Replaced -SNAPSHOT tag for -unstable tag

This commit is contained in:
Parra 2022-02-27 18:54:55 +01:00
parent 8e0d846ad1
commit d93c0dd9c5
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -19,7 +19,7 @@ pipeline {
} else if (env.BRANCH_NAME.equals('master')) { } else if (env.BRANCH_NAME.equals('master')) {
VERSION = '' VERSION = ''
} else { } else {
VERSION = '-SNAPSHOT' VERSION = 'unstable'
} }
} }
} }
@ -54,7 +54,7 @@ pipeline {
SOURCE_IMAGE += ":" + VERSION SOURCE_IMAGE += ":" + VERSION
TARGET_IMAGE += ":" + VERSION TARGET_IMAGE += ":" + VERSION
} else { } else {
TARGET_IMAGE += VERSION TARGET_IMAGE += ":" + VERSION
} }
} }
echo "Building ${TARGET_IMAGE} image..." echo "Building ${TARGET_IMAGE} image..."