-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (37 loc) · 1.07 KB
/
deploy.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
name: gh-pages
on:
# set triggers here, like on push or on release
# workflow_dispatch:
push:
branches: [ main ]
pull_request:
workflow_run:
workflows: [ Unit-Testing ]
types: [ completed ]
jobs:
on-success:
name: Deplay pages
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.12.x
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm deploy:gh-pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACCESS_TOKEN }}
publish_dir: ./dist
# Leave user_name and user_email unset to commit under your own username
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
# Optional. I'm using this for testing.
allow_empty_commit: false