This commit is contained in:
辉鸭蛋
2025-10-12 02:00:26 +08:00
parent 5cb40c5640
commit 2b076aa1cf

29
.github/workflows/sync_mirrors_git.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: Sync to Mirror Repositories
on:
workflow_dispatch: # 允许手动触发
jobs:
sync:
if: github.repository_owner == 'babalae'
runs-on: ubuntu-latest
environment:
name: product
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # 获取完整的git历史记录
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Sync to CNB
run: |
git remote add cnb https://cnb.cool/bettergi/genshin-redeem-code.git || true
git push https://cnb:${{ secrets.CNB_TOKEN }}@cnb.cool/bettergi/genshin-redeem-code.git main
continue-on-error: true