This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
Merge remote-tracking branch 'origin/release' #115
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 with private repo | |
on: | |
push: | |
branches: [ release, main ] | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add remote | |
run: git remote add overhangio https://${{ secrets.GIT_USERNAME }}:${{ secrets.GIT_PASSWORD }}@git.overhang.io/core/tutor-ecommerce.git | |
- name: Push | |
run: git push overhangio $GITHUB_REF |