From 509039187f15e514913d4e81448c61ea34ae38a8 Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Mon, 4 Dec 2023 14:27:40 -0800 Subject: [PATCH] Fix buildkite deploy docs regex - missing a `v` before the version # --- catalog-info.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalog-info.yaml b/catalog-info.yaml index 287c858db51..f650bb4ce5a 100644 --- a/catalog-info.yaml +++ b/catalog-info.yaml @@ -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