Skip to content

Commit

Permalink
fix(Buildkite): update conditional syntax (#4336)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwinter07 authored Nov 23, 2023
1 parent b0393e7 commit 48ed16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 48ed16e

Please sign in to comment.