Update Jenkinsfile

This commit is contained in:
Layla 2019-12-20 11:27:49 -05:00
parent ba578562a4
commit 4985ae4878

11
Jenkinsfile vendored
View File

@ -88,7 +88,16 @@ pipeline {
createGitHubRelease('rbn-opsGitHubToken', 'RightBrain-Networks/auto-semver', "${env.SEMVER_RESOLVED_VERSION}",
"${env.SEMVER_RESOLVED_VERSION}", ["auto-semver.tar.gz" : "dist/${env.SERVICE}-*.tar.gz"])
}
post
{
// Update Git with status of release stage.
success {
updateGithubCommitStatus(GITHUB_URL, 'Passed release stage', 'SUCCESS', 'Release')
}
failure {
updateGithubCommitStatus(GITHUB_URL, 'Failed release stage', 'FAILURE', 'Release')
}
}
}
stage('Push Version and Tag') {
steps {