File tree 2 files changed +19
-28
lines changed
2 files changed +19
-28
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : Deploy to GitHub Pages
2
+
2
3
on :
3
4
push :
4
- branches : [ main ]
5
+ branches :
6
+ - main
7
+
5
8
jobs :
6
9
build :
7
10
runs-on : ubuntu-latest
8
-
11
+ name : Build and Push
9
12
steps :
10
- - uses : actions/checkout@v2
13
+ - name : git-checkout
14
+ uses : actions/checkout@v2
11
15
12
- - name : Generate static VuePress files
13
- uses : actions/setup-node@v2
14
- with :
15
- node-version : ' 16'
16
- - run : npm ci
17
- - run : npm run build
16
+ - name : Install all dependencies
17
+ run : npm install
18
18
19
- - name : Init new repo in dist folder and commit generated files
20
- run : |
21
- cd public
22
- git init
23
- git config --global --add safe.directory /github/workspace/public
24
- git add -A
25
- git config --local user.email "[email protected] "
26
- git config --local user.name "GitHub Action"
27
- git commit -m 'deploy'
19
+ - name : Build
20
+ run : npm run build # The build command of your project
28
21
29
- - name : Force push to destination branch
30
-
31
- with :
32
- github_token : ${{ secrets.GITHUB_TOKEN }}
33
- branch : gh-pages
34
- force : true
35
- directory : ./public
22
+ - name : Push
23
+ uses : s0/git-publish-subdir-action@develop
24
+ env :
25
+ REPO : self
26
+ BRANCH : gh-pages
27
+ FOLDER : build
28
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
+ MESSAGE : " Build: ({sha}) {msg}" # The commit message
You can’t perform that action at this time.
0 commit comments