From 48ed16e832c868ffdfd4e13b37f2e9d7c9df100d Mon Sep 17 00:00:00 2001 From: Michael Winter <36558508+mcwinter07@users.noreply.github.com> Date: Thu, 23 Nov 2023 11:38:44 +1100 Subject: [PATCH] fix(Buildkite): update conditional syntax (#4336) --- .buildkite/pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 724d2566d8a..80f4488fd6b 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -15,7 +15,7 @@ steps: key: "is_released" branches: "main" # we assume that all releases with have a tag and that tag with have a @ version format - if: build.tag =~ /@(\d+\.\d+\.\d+)/ && build.tag =~ /^(?:(?!canary).)*$/ + if: ((build.tag =~ /@(\d+\.\d+\.\d+)/) && (build.tag =~ /^(?:(?!canary).)*$/)) - wait