-
Notifications
You must be signed in to change notification settings - Fork 2
262 lines (210 loc) · 6.75 KB
/
release-deploy-v2.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
name: 'Release and Deploy v2'
on:
# Uncomment the line below if you want to run the workflow manually
# and comment out lines 7-9
# workflow_dispatch:
push:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Clone Sage-Lib Repo
uses: actions/checkout@v3
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Set NPM Config
run: npm config set '//npm.pkg.github.com/:_authToken' '${{ secrets.ACCESS_TOKEN }}'
- name: Unsafe Perm set
run: npm config set unsafe-perm true
- name: Set Bot Name
run: git config user.name "Kajabi Automation Bot"
- name: Cache Node modules
uses: actions/cache@v3
id: sage-lib-node-modules
env:
cache-name: sage-lib-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.sage-lib-node-modules.outputs.cache-hit != true
run: yarn install --frozen-lockfile
lint:
needs: [setup]
runs-on: ubuntu-latest
steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Restore Node modules
uses: actions/cache/restore@v3
id: restore-sage-lib-node-modules
env:
cache-name: sage-lib-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.restore-sage-lib-node-modules.outputs.cache-hit != true
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
test:
needs: [setup]
runs-on: ubuntu-latest
steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Restore Node modules
uses: actions/cache/restore@v3
id: restore-sage-lib-node-modules
env:
cache-name: sage-lib-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.restore-sage-lib-node-modules.outputs.cache-hit != true
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
build:
needs: [setup]
runs-on: ubuntu-latest
steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Restore Node modules
uses: actions/cache/restore@v3
id: restore-sage-lib-node-modules
env:
cache-name: sage-lib-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.restore-sage-lib-node-modules.outputs.cache-hit != true
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Cache build assets
uses: actions/cache/save@v3
id: sage-lib-build-assets
env:
cache-name: sage-lib-build-assets
with:
path: |
'packages/**'
'docs/**'
key: ${{ runner.os }}-build-${{ env.cache-name }}
publish:
needs: [lint, test, build]
runs-on: ubuntu-latest
steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.7'
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Restore Node modules
uses: actions/cache/restore@v3
id: restore-sage-lib-node-modules
env:
cache-name: sage-lib-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
- name: Check cache hit
if: steps.restore-sage-lib-node-modules.outputs.cache-hit != 'true'
run: exit 1
- name: Set Bot Email
run: git config user.email "[email protected]"
- name: Set Bot Name
run: git config user.name "Kajabi Automation Bot"
- name: Set NPM Config
run: npm config set '//npm.pkg.github.com/:_authToken' '${{ secrets.ACCESS_TOKEN }}'
- name: Unsafe Perm set
run: npm config set unsafe-perm true
- name: Restore Build assets
uses: actions/cache/restore@v3
id: restore-sage-lib-build-assets
env:
cache-name: sage-lib-build-assets
with:
path: |
'packages/**'
'docs/**'
key: ${{ runner.os }}-build-${{ env.cache-name }}
- name: Check Build Assets cache hit
if: steps.restore-sage-lib-build-assets.outputs.cache-hit != 'true'
continue-on-error: true
run: yarn build
- name: Lerna Boostrap
run: npx lerna bootstrap --ci
- name: Lerna Publish
run: npx lerna publish --registry github --yes
deploy-sites:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.7'
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.20.0
- name: Deploy Documentation Site
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_DOCS_APP_NAME: ${{ secrets.HEROKU_DOCS_APP_NAME }}
run: yarn docs:deploy
- name: Deploy Storybook Site
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_STORYBOOK_APP_NAME: ${{ secrets.HEROKU_STORYBOOK_APP_NAME }}
run: yarn storybook:deploy
- name: SassDocs Site Deploy
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_SASSDOCS_APP_NAME: ${{ secrets.HEROKU_SASSDOCS_APP_NAME }}
run: yarn sassdocs:deploy