Update Jenkinsfile

This commit is contained in:
Hambrsoom Baboyan 2020-03-14 23:33:29 -04:00 committed by GitHub
parent 58a79a85e3
commit 25618973e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -22,6 +22,9 @@ pipeline {
}
stage('Deploy') {
steps {
when {
branch 'master'
}
echo 'Deploying stage has been executed'
bat 'git push --set-upstream origin master'
}