. #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-deploy | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: # 忽略的文件 | |
- "README.md" | |
- "LICENSE" | |
- ".github/workflows/**" | |
- "CHANGELOG.md" | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependent Node Pkgs | |
run: npm install | |
- name: build | |
run: npm run build | |
- name: Deploy # 部署 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # 部署后提交到那个分支 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
folder: docs/.vuepress/dist # 这里填打包好的目录名称 | |
clean: true | |
single-commit: true | |
git-config-email: github-actions[bot]@users.noreply.github.com | |
git-config-name: github-actions[bot] |