-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.04 KB
/
deploy_to_gh_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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: deploy_to_gh_pages
on:
push:
branches: [ master ]
jobs:
build_dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- uses: actions/setup-node@v3
with:
node-version: 16
- run: |
npm i
npm run build
- uses: actions/upload-artifact@v2
with:
name: dist_artifact
path: dist/**/*
deploy_dist:
runs-on: ubuntu-latest
needs: build_dist
steps:
- uses: actions/checkout@v3
with:
ref: gh-pages
- run: rm -rf ./*
- uses: actions/download-artifact@v2
with:
name: dist_artifact
path: ./
- run: |
git config --local user.email "[email protected]"
git config --local user.name "Posts Hook"
git add .
git commit -m "[CI:deploy] deploy_dist job"
- uses: ad-m/github-push-action@master
with:
branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}