From 389611c9b9b6ec2f7849be5301f713d42034caa9 Mon Sep 17 00:00:00 2001 From: Rene Cordier Date: Mon, 28 Feb 2022 11:31:35 +0700 Subject: [PATCH] Should not build web image on release branch --- Jenkinsfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index af34edf18..a9bc3063d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,7 +12,6 @@ pipeline { when { anyOf { branch 'master' - branch 'release' buildingTag() } } @@ -21,8 +20,6 @@ pipeline { env.DOCKER_TAG = 'master' if (env.TAG_NAME) { env.DOCKER_TAG = env.TAG_NAME - } else { - env.DOCKER_TAG = env.BRANCH_NAME } echo "Docker tag: ${env.DOCKER_TAG}"