literal -> var

This commit is contained in:
Layla 2019-12-20 11:29:04 -05:00
parent 4985ae4878
commit ec64825121

4
Jenkinsfile vendored
View File

@ -7,6 +7,8 @@ pipeline {
SERVICE = 'auto-semver'
GITHUB_URL = 'git@github.com:RightBrain-Networks/auto-semver.git'
DOCKER_REGISTRY = credentials('RbnDockerRegistry')
GITHUB_KEY = 'rbn-ops github'
//Image tag to use for self-versioning
SELF_SEMVER_TAG = "develop"
@ -102,7 +104,7 @@ pipeline {
stage('Push Version and Tag') {
steps {
echo "The current branch is ${env.BRANCH_NAME}."
gitPushTags('rbn-ops github')
gitPushTags(env.GITHUB_KEY)
}
}
}