-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 963 Bytes
/
deploy.yml
File metadata and controls
40 lines (38 loc) · 963 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
37
38
39
40
name: Deploy
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: npm install
run: npm install
- name: Build
run: npm run build
- name: Commit and Push
run: |
git add -N build/
if ! git diff --exit-code --quiet
then
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update"
git push
fi
- name: Build Docs
run: npm run docs
- name: Docs Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs