This commit is contained in:
Layla 2019-12-19 16:46:33 -05:00
parent 5f20bcf0be
commit 57411e6a46

4
Jenkinsfile vendored
View File

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