Merge remote-tracking branch 'origin/regression' into regression #84
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: Push changes to Gitlab | |
on: [ push ] | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y build-essential\ | |
git | |
sudo apt-get clean | |
- name: Push to GitLab | |
env: | |
ACCESS_TOKEN: ${{secrets.GITLAB_ACCESS_TOKEN}} | |
run: | | |
git clone -b master https://gitlab.hzdr.de/Normo/deepFPlearn.git/ | |
cd deepFPlearn | |
git config --global user.name $GITHUB_ACTOR | |
git remote add github https://github.com/yigbt/deepFPlearn.git | |
git pull github master | |
git push --tags https://Normo:[email protected]/Normo/deepFPlearn.git/ | |
git push https://Normo:[email protected]/Normo/deepFPlearn.git/ |