-
-
Notifications
You must be signed in to change notification settings - Fork 8
43 lines (36 loc) · 1.11 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
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: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build packages
run: yarn build-packages
- name: Build
working-directory: ./website
run: yarn build
- name: Run bundlemon
working-directory: ./website
run: yarn bundlemon
env:
CI_COMMIT_SHA: ${{github.event.pull_request.head.sha || github.sha}} # important!
CI_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
- 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 }}
run: yarn deploy:prod --message "${{ github.event.head_commit.message }}"