deploy-gitee-pages.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # 将静态内容部署到 GitHub Pages 的简易工作流程
  2. name: Deploy Gitee Pages
  3. on:
  4. # 仅在推送到默认分支时运行。
  5. push:
  6. branches: [ 'master' ]
  7. # 这个选项可以使你手动在 Action tab 页面触发工作流
  8. workflow_dispatch:
  9. # 设置 GITHUB_TOKEN 的权限,以允许部署到 GitHub Pages。
  10. permissions:
  11. contents: write
  12. pages: write
  13. id-token: write
  14. jobs:
  15. # 单次部署的工作描述
  16. deploy:
  17. environment:
  18. name: github-pages
  19. url: ${{ steps.deployment.outputs.page_url }}
  20. runs-on: ubuntu-latest
  21. steps:
  22. - name: Checkout
  23. uses: actions/checkout@v3
  24. - name: Install pnpm
  25. uses: pnpm/action-setup@v2
  26. with:
  27. version: 8
  28. - name: Set up Node
  29. uses: actions/setup-node@v3
  30. with:
  31. node-version: 18
  32. cache: 'pnpm'
  33. - name: Install dependencies
  34. run: pnpm install
  35. - name: Build
  36. run: pnpm run build-gitee-pages
  37. - name: Deploy to Github Pages
  38. uses: peaceiris/actions-gh-pages@v4
  39. with:
  40. github_token: ${{ secrets.GITHUB_TOKEN }}
  41. publish_dir: ./dist
  42. publish_branch: gitee-pages
  43. - name: Sync to Gitee
  44. uses: wearerequired/git-mirror-action@master
  45. env:
  46. SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }}
  47. with:
  48. source-repo: git@github.com:zyronon/douyin.git
  49. destination-repo: git@gitee.com:zyronon/douyin.git
  50. - name: Build Gitee Pages
  51. uses: yanglbme/gitee-pages-action@main
  52. with:
  53. # 注意替换为你的 Gitee 用户名
  54. gitee-username: zyronon
  55. # 注意在 Settings->Secrets 配置 GITEE_PASSWORD
  56. gitee-password: ${{ secrets.GITEE_PASSWORD }}
  57. # 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错
  58. gitee-repo: zyronon/douyin
  59. # 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在)
  60. branch: gitee-pages