From d93c0dd9c5175d10640463ca3e3814cc2a470206 Mon Sep 17 00:00:00 2001 From: Parra Date: Sun, 27 Feb 2022 18:54:55 +0100 Subject: [PATCH] Replaced -SNAPSHOT tag for -unstable tag --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e5a6a1e..262367a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,7 @@ pipeline { } else if (env.BRANCH_NAME.equals('master')) { VERSION = '' } else { - VERSION = '-SNAPSHOT' + VERSION = 'unstable' } } } @@ -54,7 +54,7 @@ pipeline { SOURCE_IMAGE += ":" + VERSION TARGET_IMAGE += ":" + VERSION } else { - TARGET_IMAGE += VERSION + TARGET_IMAGE += ":" + VERSION } } echo "Building ${TARGET_IMAGE} image..."