diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 32b483f..208e02e 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -54,3 +54,30 @@ jobs: env: # @see https://docs.github.com/cn/actions/reference/authentication-in-a-workflow#about-the-github_token-secret GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # refer: https://github.com/marketplace/actions/gitee-pages-action + sync-to-gitee: + needs: deploy-gh-pages + runs-on: ubuntu-latest + steps: + - name: Sync to Gitee + uses: wearerequired/git-mirror-action@master + env: + # 注意在 Settings->Secrets 配置 GITEE_PRIVATE_KEY + SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }} + with: + # 注意替换为你的 GitHub 源仓库地址 + source-repo: git@github.com:shbone/shbone.github.io.git + # 注意替换为你的 Gitee 目标仓库地址 + destination-repo: git@gitee.com:shbkkk/shbone.gitee.io.git + + - name: Build Gitee Pages + uses: yanglbme/gitee-pages-action@main + with: + # 注意替换为你的 Gitee 用户名 + gitee-username: shbkkk + # 注意在 Settings->Secrets 配置 GITEE_PASSWORD + gitee-password: ${{ secrets.GITEE_PASSWORD }} + # 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错 + gitee-repo: sunkkk/shbone.gitee.io + # 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在) + branch: gh-pages \ No newline at end of file