Skip to content

Commit

Permalink
Fix buildkite deploy docs regex
Browse files Browse the repository at this point in the history
- missing a `v` before the version #
  • Loading branch information
cee-chen committed Dec 4, 2023
1 parent 63ac9e7 commit 5090391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ spec:
build_tags: true # Will trigger job when GitHub release tags are created
build_pull_requests: false
filter_enabled: true
filter_condition: | # Eg 100.100.100 but skip 100.100.100.1 or 100.100.100-rc
build.tag =~ /^[0-9]+\.[0-9]+\.[0-9]+$/
filter_condition: | # Eg v100.100.100 but skip v100.100.100.1 or v100.100.100-rc
build.tag =~ /^v[0-9]+\.[0-9]+\.[0-9]+$/
teams:
eui-team:
access_level: MANAGE_BUILD_AND_READ
Expand Down

0 comments on commit 5090391

Please sign in to comment.