From c2a26e3453b9f871356e2eae2e6efd8c27ce7451 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Thu, 23 Mar 2023 14:04:09 +0100 Subject: [PATCH] Fix docker tag in stage3 to coexist with periodic clean-up Change-Id: I1ce9a5de84e0bcedd7abaecfa0fb6d753b853cb7 Signed-off-by: garciadeblas --- jenkins/ci-pipelines/ci_stage_3.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 4e082549..83ae27e9 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -637,7 +637,7 @@ EOF""" parallelSteps[module] = { dir("$module") { sh("docker pull ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag}") - sh("""docker tag opensourcemano/${moduleName}:${moduleTag} \ + sh("""docker tag ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag} \ opensourcemano/${moduleName}:${dockerTag}""") sh "docker push opensourcemano/${moduleName}:${dockerTag}" } -- 2.25.1