From cb939f63ae52c99de4134ff3ff72f3bad6428993 Mon Sep 17 00:00:00 2001 From: Stewart X Addison Date: Fri, 23 Jun 2023 13:50:26 +0100 Subject: [PATCH] Fixup isWeekly check Signed-off-by: Stewart X Addison --- pipelines/build/common/build_base_file.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipelines/build/common/build_base_file.groovy b/pipelines/build/common/build_base_file.groovy index c398d6b35..29b12a994 100644 --- a/pipelines/build/common/build_base_file.groovy +++ b/pipelines/build/common/build_base_file.groovy @@ -44,6 +44,7 @@ class Builder implements Serializable { boolean enableTestDynamicParallel boolean enableInstallers boolean enableSigner + boolean isWeekly boolean publish boolean release String releaseType @@ -1026,6 +1027,7 @@ return { enableSigner: Boolean.parseBoolean(enableSigner), publish: publish, release: release, + isWeekly: (releaseType == 'Weekly'), releaseType: releaseType, scmReference: scmReference, buildReference: buildReference,