Update push2gitee.yml

This commit is contained in:
机械小鸽 2025-06-22 17:45:30 +08:00 committed by GitHub
parent 0ae848f6cf
commit ee385717a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,8 @@
name: Sync to Private Gitee
name: Daily Sync to Gitee
on:
schedule:
- cron: '0 1 * * *' # 每天 UTC 1 点(北京时间 9 点)
- cron: '0 2 * * *' # 每天UTC时间2点执行北京时间10点)
workflow_dispatch: # 支持手动触发
jobs:
@ -10,21 +10,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repository (full history)
uses: actions/checkout@v3
with:
fetch-depth: 0 # ⬅️ 关键修改,避免 shallow clone 错误
- name: Checkout this repository
uses: actions/checkout@v4
- name: Set Git config
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
- name: Add Gitee remote
- name: Add Gitee remote and force push
env:
GITEE_USERNAME: zhudongjer
GITEE_TOKEN: 11f606dc48ee2c481918e169b2291fb3c4705cdf
run: |
git remote add gitee http://${{ secrets.GITEE_USERNAME }}:${{ secrets.GITEE_TOKEN }}@49.235.152.15:3000/zhudongjer/carrot.git
# 添加 Gitee 远程地址HTTP + Token
git remote add gitee http://$GITEE_USERNAME:$GITEE_TOKEN@49.235.152.15:3000/$GITEE_USERNAME/carrot.git
- name: Force push to Gitee
run: |
git push gitee --force --all
git push gitee --force --tags
# 强制推送当前分支(假设为 master
git push gitee master --force
# 推送标签(如果有)
git push gitee --tags