-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (36 loc) · 999 Bytes
/
docs.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
# https://docs.github.com/en/actions/using-workflows/about-workflows
name: Docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout Repo
uses: actions/checkout@v2
# https://github.com/actions/setup-node
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
# https://github.com/pnpm/action-setup
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x
# https://pnpm.io/zh/cli/install#--frozen-lockfile
- name: Install and Build
run: |
pnpm install --frozen-lockfile
pnpm docs:build
# https://github.com/JamesIves/github-pages-deploy-action
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/.vuepress/dist