-
-
Notifications
You must be signed in to change notification settings - Fork 8
47 lines (39 loc) · 1.23 KB
/
build-web.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
name: Build web
on:
push:
branches: [master, release/*, next]
pull_request:
types: [synchronize, opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build packages
run: yarn build-packages
- name: Build
working-directory: ./website
run: yarn build
# need to build packages in order to run the bundlemon action on the current CLI
- name: Build packages
run: yarn build-packages
- name: BundleMon
uses: lironer/bundlemon-action@v1
with:
working-directory: ./website
- name: Deploy
if: ${{ github.ref_name == 'master' }}
working-directory: ./website
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
# https://securitylab.github.com/research/github-actions-untrusted-input/
COMMIT_MSG: ${{ github.event.head_commit.message }}
run: yarn deploy:prod --message "$COMMIT_MSG"