From dff819086d395d6cba5c4638170d902de7e603ef Mon Sep 17 00:00:00 2001 From: karun-singh Date: Fri, 1 Dec 2023 17:18:29 +0530 Subject: [PATCH] Jenkins CI image tag update --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index add75d15..01ea874a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -162,8 +162,8 @@ pipeline { steps { script { docker.withRegistry( registryUri, registryCredential ) { - devImage.push("5.0.0-alpha-${env.GIT_HASH}") - deplImage.push("5.0.0-alpha-${env.GIT_HASH}") + devImage.push("5.5.0-alpha-${env.GIT_HASH}") + deplImage.push("5.5.0-alpha-${env.GIT_HASH}") } } } @@ -171,7 +171,7 @@ pipeline { stage('Docker Swarm deployment') { steps { script { - sh "ssh azureuser@docker-swarm 'docker service update rs_rs --image ghcr.io/datakaveri/rs-depl:5.0.0-alpha-${env.GIT_HASH}'" + sh "ssh azureuser@docker-swarm 'docker service update rs_rs --image ghcr.io/datakaveri/rs-depl:5.5.0-alpha-${env.GIT_HASH}'" sh 'sleep 10' } }