Skip to content

Commit

Permalink
✨create sync_cnbc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yql70 committed Nov 15, 2024
1 parent 30a3121 commit a2d4a78
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/sync_cnbc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Sync-To-CNBC

on:
push:
branches:
- master

jobs:
push-to-mirror:
runs-on: ubuntu-latest
steps:
- name: Clone
run: |
git init
git remote add origin https://github.com/${GITHUB_REPOSITORY}.git
git fetch --all
for branch in `git branch -a | grep remotes | grep -v HEAD`; do
git branch --track ${branch##*/} $branch
done
- name: Push to CNBC
run: |
remote_repo="https://${CNBC_USERNAME}:${CNBC_PASSWORD}@cnb.cool/tca/tools/${GITHUB_REPOSITORY##*/}.git"
git remote add cnbc "${remote_repo}"
git show-ref # debug
git branch --verbose
git push --all cnbc
git push --tags cnbc
env:
CNBC_USERNAME: ${{ secrets.CNBC_USERNAME }}
CNBC_PASSWORD: ${{ secrets.CNBC_PASSWORD }}

0 comments on commit a2d4a78

Please sign in to comment.