Skip to content

update deploy

update deploy #329

Workflow file for this run

name: 部署文档
on:
push:
branches:
- docs # 只在 docs 上 push 触发部署
paths-ignore: # 下列文件的变更不触发部署,可以自行添加
- README.md
- LICENSE
pull_request:
branches:
- docs # 只在 docs 上 push 触发部署
types: [closed]
permissions:
contents: write
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# 如果你文档需要 Git 子模块,取消注释下一行
# submodules: true
- name: 设置 Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: 安装依赖
run: npm ci
- name: 构建文档
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
npm run docs:build
> src/.vuepress/dist/.nojekyll
- name: 部署文档
uses: JamesIves/github-pages-deploy-action@v4
with:
# 这是文档部署到的分支名称
branch: gh-pages
folder: src/.vuepress/dist
deploy-main:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Switch to main branch
run: |
git checkout main || git checkout --orphan main
git rm -rf .
- name: Copy specific folders
run: |
cp -r src/outline ./
cp -r src/ds ./
cp -r src/algorithm ./
cp -r src/problem ./
cp -r src/README.md ./
cp -r assets/image/leetcode-js-logo.png ./
- name: Commit and push changes
run: |
git config --local user.name "github-actions"
git config --local user.email "github-actions@github.com"
git add .
git commit -m "Update main branch with src folders" || echo "No changes to commit"
git push origin main