Update README.md #2
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-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 }} |