From 77b399b39c0dfdeeab84f6a246a98cf104a7b0ff Mon Sep 17 00:00:00 2001 From: Semantic Versioner Date: Mon, 25 Nov 2019 14:34:30 -0500 Subject: [PATCH] change creds and push --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 47c3771..7dcb067 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { agent any environment { SERVICE = 'auto-semver' - GITHUB_KEY = 'autosemverDeployKey' + GITHUB_KEY = 'rbn-ops github' GITHUB_URL = 'git@github.com:RightBrain-Networks/auto-semver.git' DOCKER_REGISTRY = '356438515751.dkr.ecr.us-east-1.amazonaws.com' @@ -81,7 +81,7 @@ pipeline { stage('Push Version and Tag') { steps { echo "The current branch is ${env.BRANCH_NAME}." - gitPush(env.GITHUB_KEY, env.BRANCH_NAME, true) + gitPushTags(env.GITHUB_KEY) } } }