From 0735d09dfb94aac87163d8be8c247fc45764b5d7 Mon Sep 17 00:00:00 2001 From: Milan Petrovic <5rovicmilan8@gmail.com> Date: Wed, 11 Jun 2025 14:05:07 +0200 Subject: [PATCH] fixed typo in repo variable --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 86d678983..9bb551bdc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,7 +28,7 @@ pipeline { script { def branch = env.BRANCH_NAME def dockerRepo = (branch == 'main') ? 'main' : 'mr' - def imageTag = "${DOCKER_HUB_USER}/${repo}:${GIT_COMMIT_SHORT}" + def imageTag = "${DOCKER_HUB_USER}/${dockerRepo}:${GIT_COMMIT_SHORT}" withCredentials([usernamePassword( credentialsId: DOCKERHUB_CREDES,