1
0

项目:配置 Github Action

This commit is contained in:
周中平 2022-11-11 16:29:40 +08:00
parent af773be214
commit 24ea745154
No known key found for this signature in database
GPG Key ID: B1DF9DD42D8E00DC
2 changed files with 62 additions and 0 deletions

30
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: build
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
publish_branch: html

32
.github/workflows/dev-pages.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: dev-pages
on:
push:
branches:
- dev
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Set BaseUrl
run: sed -i "s/\"\/\"/\"\/wiki\/\"/g" docusaurus.config.js
- name: Build
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
publish_branch: dev-pages