From 2d49f43a1d79d54744d8a0b5caae4eb252830efd Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 4 Jun 2020 23:39:31 +0800 Subject: [PATCH] modified: Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a5837b7..376ec9d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ node("docker-node") { docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') { - git branch: "3.11.3", url: "ssh://git@git.ervine.org:2222/jonny/x86_64-alpine-db-sidecar", credentialsId: 'jenkins-to-git' + git branch: "3.11.6", url: "ssh://git@git.ervine.org/jonny/x86_64-alpine-db-sidecar", credentialsId: 'jenkins-to-git' sh "git rev-parse HEAD > .git/commit-id" def commit_id = readFile('.git/commit-id').trim() @@ -13,7 +13,7 @@ node("docker-node") { stage "publish" app.push("${env.BUILD_NUMBER}") - app.push("3.11.3") + app.push("3.11.6") app.push("latest") }