Printing tags

This commit is contained in:
paola.rozo 2020-08-26 01:53:51 -05:00
parent 77213c4258
commit e4fc97dbb7

2
Jenkinsfile vendored
View file

@ -50,7 +50,7 @@ pipeline {
agent any
steps {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'git-credentials-id', usernameVariable: 'GIT_USERNAME', passwordVariable: 'GIT_PASSWORD']]) {
sh("git push https://${env.GIT_USERNAME}:${env.GIT_PASSWORD}@simple-java-maven-app.git --tags")
sh("git push https://${env.GIT_USERNAME}:${env.GIT_PASSWORD}@github.com/paolarozo/simple-python-pyinstaller-app.git --tags")
}
}
}