forked from xjh22222228/nav
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (35 loc) · 814 Bytes
/
ci.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
name: Build web
on:
push:
branches:
- dev
- master
- main
- own
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install
uses: borales/actions-yarn@v4
with:
cmd: install
# dist/404.html: gh-pages history mode
- name: Build
run: |
npm run build-gh-pages
cp dist/browser/index.html dist/browser/404.html
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.TOKEN }}
branch: gh-pages
folder: dist/browser