Skip to content

Commit d9bf173

Browse files
committed
Update Github Actions
1 parent fbb3b57 commit d9bf173

File tree

2 files changed

+19
-28
lines changed

2 files changed

+19
-28
lines changed

.gitconfig

-3
This file was deleted.

.github/workflows/deploy.yml

+19-25
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,29 @@
11
name: Deploy to GitHub Pages
2+
23
on:
34
push:
4-
branches: [ main ]
5+
branches:
6+
- main
7+
58
jobs:
69
build:
710
runs-on: ubuntu-latest
8-
11+
name: Build and Push
912
steps:
10-
- uses: actions/checkout@v2
13+
- name: git-checkout
14+
uses: actions/checkout@v2
1115

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
1818

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
2821

29-
- name: Force push to destination branch
30-
uses: ad-m/[email protected]
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

0 commit comments

Comments
 (0)