-
Notifications
You must be signed in to change notification settings - Fork 5
153 lines (138 loc) · 6.23 KB
/
deploy-prerelease.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
######################################################
# Deploy a prerelease NPM package version
# when code pushed to master
######################################################
name: Publish prerelease (NPM package publish @next)
on:
push:
branches:
- master
env:
NODE_VERSION: '14.x'
# NPM_TOKEN: <org.secret>
jobs:
######################################################################
# build NPM package for pre-release
######################################################################
build:
name: Build NPM package
# only run if in our repo & if [skip-ci] is not in the commit message
if: github.repository_owner == 'voitanos' && !contains(github.event.head_commit.message,'[skip-ci]')
runs-on: ubuntu-latest
steps:
######################################################################
# Checkout code
######################################################################
- name: Checkout repo codebase
uses: actions/checkout@v2
with:
fetch-depth: 1
clean: true
submodules: false
######################################################################
# configure Node.js
######################################################################
- name: Setup Node ${{ env.NODE_VERSION }} environment
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
######################################################################
# restore cached dependencies
######################################################################
- name: Restore cached dependencies
uses: actions/cache@v2
id: node_module_cache
with:
path: node_modules
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('package-lock.json') }}
######################################################################
# install dependencies (if restore cached deps failed)
######################################################################
- name: Install dependencies
if: steps.node_module_cache.outputs.cache-hit != 'true'
shell: bash
run: npm ci
env:
IS_BUILD: 1 # hack to keep package's postinstall script from running on builds
######################################################################
# build package
######################################################################
- name: Build package
shell: bash
run: npm run build --if-present
######################################################################
# compress & upload built package as artifact
######################################################################
- name: Compress built project
run: tar -cvf build.tar --exclude node_modules ./
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: build-${{ env.NODE_VERSION }}
path: build.tar
######################################################################
# build NPM package for pre-release
######################################################################
publish_to_npm:
name: Publish NPM package (@next)
# only run if in our repo & if [skip-cd] is not in the commit message
if: github.repository_owner == 'voitanos' && !contains(github.event.head_commit.message,'[skip-cd]')
needs: build
runs-on: ubuntu-latest
steps:
######################################################################
# download & uncompress built package as artifact
######################################################################
- uses: actions/download-artifact@v2
with:
name: build-${{ env.NODE_VERSION }}
- name: Unpack build artifact
run: tar -xvf build.tar && rm build.tar
######################################################################
# configure Node.js
######################################################################
- name: Setup Node ${{ env.NODE_VERSION }} environment
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
######################################################################
# restore cached dependencies
######################################################################
- name: Restore cached dependencies
uses: actions/cache@v2
id: node_module_cache
with:
path: node_modules
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('package-lock.json') }}
######################################################################
# install dependencies (if restore cached deps failed)
######################################################################
- name: Install dependencies
if: steps.node_module_cache.outputs.cache-hit != 'true'
shell: bash
run: npm ci
env:
IS_BUILD: 1 # hack to keep package's postinstall script from running on builds
######################################################################
# update package name
######################################################################
- name: Stamp 'beta' to package version
run: node scripts/update-package-version.js $GITHUB_SHA
######################################################################
# publish NPM package as preview release
######################################################################
- name: Publish preview release as NPM @next
run: npm publish --tag next --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
######################################################################
# compress & upload publish output as artifact
######################################################################
- name: Compress output
run: tar -cvf build.tar --exclude node_modules ./
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: build-${{ env.NODE_VERSION }}
path: build.tar