-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 694 Bytes
/
Copy pathdocs.yml
File metadata and controls
35 lines (30 loc) · 694 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
name: Docs
on:
push:
branches: [main]
jobs:
docs:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2.2.2
with:
version: 6.32.3
- name: Install and Build
run: |
pnpm i
pnpm build
cd www
pnpm i
pnpm build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
token: ${{ secrets.GH_TOKEN }}
branch: gh-pages
folder: www/dist