Merge pull request #188 from FZJ-IEK3-VSA/176_latloncorrect #11
This file contains hidden or 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: Push dev to Jugit | |
on: | |
push: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: FZJ-IEK3-VSA/RESKit | |
fetch-depth: 0 | |
- name: Push To Gitlab | |
env: | |
token: ${{ secrets.GITLAB_ACCESS_TOKEN }} | |
run: | | |
echo Starting to push repo to gitlab | |
git config user.name "julian-belina-auto-commit" | |
git config user.email "[email protected]" | |
echo user name and email are set | |
git fetch | |
git switch dev | |
echo "Checkout complete" | |
echo start to push | |
git push --force https://push_to_jugit:${{ secrets.GITLAB_ACCESS_TOKEN }}@jugit.fz-juelich.de/iek-3/shared-code/RESKit.git dev | |
echo push done |