forked from xjh22222228/nav
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 851 Bytes
/
ci.yml
File metadata and controls
36 lines (36 loc) · 851 Bytes
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
name: Build web
on:
push:
branches:
- master
- main
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: 22.x
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Install
run: |
pnpm 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