Skip to content

Commit

Permalink
修改 github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hooray committed Mar 17, 2024
1 parent 7bc6fa4 commit acb17c0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 59 deletions.
40 changes: 32 additions & 8 deletions .github/workflows/deploy-example-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,37 @@ jobs:
NODE_OPTIONS: --max-old-space-size=8192
run: nr build:example

- name: Pushes to another repository
uses: cpina/github-action-push-to-another-repository@main
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.PUSH_TO_ANOTHER_REPO_SSH_DEPLOY_KEY }}
external_repository: fantastic-admin/basic-example
publish_branch: main
publish_dir: ./dist-example
enable_jekyll: true
force_orphan: true
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'

- name: Sync to Gitee
uses: wearerequired/git-mirror-action@master
env:
SSH_DEPLOY_KEY: ${{ secrets.PUSH_TO_ANOTHER_REPO_SSH_DEPLOY_KEY }}
# 注意在 Settings->Secrets 配置 GITEE_RSA_PRIVATE_KEY
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
with:
# 注意替换为你的 GitHub 源仓库地址
source-repo: git@github.com:fantastic-admin/basic-example.git
# 注意替换为你的 Gitee 目标仓库地址
destination-repo: git@gitee.com:fantastic-admin/basic-example.git

- name: Build Gitee Pages
uses: yanglbme/gitee-pages-action@main
with:
source-directory: dist-example
destination-github-username: fantastic-admin
destination-repository-name: basic-example
user-email: 304327508@qq.com
target-branch: main
# 注意替换为你的 Gitee 用户名
gitee-username: hooray
# 注意在 Settings->Secrets 配置 GITEE_PASSWORD
gitee-password: ${{ secrets.GITEE_PASSWORD }}
# 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错
gitee-repo: fantastic-admin/basic-example
# 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在)
branch: main
51 changes: 0 additions & 51 deletions public/.github/workflows/deploy.yml

This file was deleted.

Empty file removed public/.nojekyll
Empty file.

0 comments on commit acb17c0

Please sign in to comment.