update deploy #332
This file contains hidden or 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: 部署文档 | |
| 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 | |
| - name: Clean up main branch | |
| run: | | |
| # 清空 src 以外的所有文件,限制深度为 1 | |
| find . -maxdepth 1 -not -path './src' -not -path './.git' -exec rm -rf {} + | |
| # 移动 src 中的文件到根目录 | |
| mv src/* ./ | |
| # 删除 src 和 .vuepress 文件夹 | |
| rm -rf src .vuepress | |
| - 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 files" || echo "No changes to commit" | |
| git push origin main |