From 511af6297af8628cc170e3c5253204580966c343 Mon Sep 17 00:00:00 2001 From: Bradley Boutcher Date: Wed, 1 Jul 2020 12:42:46 -0400 Subject: [PATCH] Add additional condition to artifact building stage We need to build artifacts both when we are on the master branch, and when we are performing a tagged build --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 34c40159..a0ea68f3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,10 @@ pipeline { stage('Build Release Artifacts') { when { - branch 'master' + anyOf { + branch 'master' + buildingTag() + } } steps {