gitlab-ci: Push master to Sourceforge after successfull build/test

This commit is contained in:
Matthias Hochsteger 2017-03-16 15:11:43 +01:00
parent 04d7e47824
commit 644b0b8ad8

View File

@ -156,6 +156,20 @@ test_ubuntu_1604:
# Deploy stage
############################################
deploy_sourceforge:
stage: deploy
tags:
- linux
- docker
script:
- git remote add sourceforge ssh://mhochste@git.code.sf.net/p/netgen-mesher/git || true
- git remote update
- git checkout master
- git pull origin master
- git push sourceforge master
only:
- master
############################################
# Cleanup stage
############################################