-
Notifications
You must be signed in to change notification settings - Fork 85
37 lines (35 loc) · 895 Bytes
/
pages.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
name: deploy
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
node-version: 'v18.13.0'
- uses: actions/setup-node@v3
with:
node-version: 'v18.13.0'
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm --prefix ./docs install
- run: pnpm --prefix ./docs build
- uses: actions/upload-artifact@v3
with:
path: ./docs/doc_build
deploy:
needs: build
runs-on: ubuntu-latest
if: github.ref=='refs/heads/main'
steps:
- uses: actions/download-artifact@v3
with:
node-version: 'v18.13.0'
path: ./docs/doc_build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/doc_build/artifact