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

4
Jenkinsfile vendored
View File

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