Commiting tags

This commit is contained in:
paola.rozo 2020-08-25 23:19:03 -05:00
parent ca3177b17b
commit dbff7dda78

10
Jenkinsfile vendored
View file

@ -46,5 +46,15 @@ pipeline {
} }
} }
} }
stage("Tag and Push") {
when { branch 'master' }
steps {
steps {
sshagent (credentials: ['jenkins-generated-ssh-key']) {
sh 'git push --tags'
}
}
}
} }
} }