Merge pull request #1000 from nest/units-prefix-fix #217
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: Mirror to EBRAINS | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
sync_to_ebrains: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'nest' }} | |
steps: | |
- name: sycnmaster | |
uses: wei/git-sync@v3 | |
with: | |
source_repo: "nest/nestml" | |
source_branch: "master" | |
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_NESTML_GITLAB }}@gitlab.ebrains.eu/nest/nestml.git" | |
destination_branch: "main" | |
- name: synctags | |
uses: wei/git-sync@v3 | |
with: | |
source_repo: "nest/nestml" | |
source_branch: "refs/tags/*" | |
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_NESTML_GITLAB }}@gitlab.ebrains.eu/nest/nestml.git" | |
destination_branch: "refs/tags/*" |