chore: ci/cd

This commit is contained in:
kevin.zhang
2024-04-18 17:35:37 +08:00
parent c04e3988fe
commit 4804aa1e04
4 changed files with 277 additions and 2 deletions

31
.github/workflows/gh-pages.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: gp-pages
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set-up Node
uses: actions/setup-node@v1
with:
node-version: "18.15.0"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm i
working-directory: ./sites
- name: Build gh-pages
run: pnpm docs:build
working-directory: ./sites
- name: Deploy to gh-pages
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: sites/docs/dist
env:
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}