-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (36 loc) · 943 Bytes
/
deploy.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
name: Deploy to GitHub Pages
on:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: 'deploy'
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: https://lamda-uai.github.io
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 16.x
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Update Browserslist
run: npx update-browserslist-db@latest
- name: Build
run: |
PUBLIC_URL=https://lamda-uai.github.io yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build