Sync Gitee Repository #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Gitee Repository | |
on: | |
schedule: | |
- cron: '* 1 * * *' | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_KEY }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Private Key | |
run: | | |
mkdir -p ~/.ssh | |
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
echo "StrictHostKeyChecking no" >> ~/.ssh/config | |
- name: Push Mirror | |
env: | |
SOURCE_REPO: 'https://github.com/mineadmin/mineadmin.git' | |
DESTINATION_REPO: '[email protected]:mineadmin/mineadmin.git' | |
run: | | |
git clone --mirror "$SOURCE_REPO" && cd `basename "$SOURCE_REPO"` | |
git remote set-url --push origin "$DESTINATION_REPO" | |
git fetch -p origin | |
git for-each-ref --format 'delete %(refname)' refs/pull | git update-ref --stdin | |
git push --mirror |