From 894f73ff7854bcf368d394b0cb8811406e17a29e Mon Sep 17 00:00:00 2001 From: Sigurd Meldgaard Date: Thu, 4 Dec 2025 13:52:34 +0000 Subject: [PATCH] Fix underscore in expected tag name --- tool/build_image_proxy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/build_image_proxy.yaml b/tool/build_image_proxy.yaml index 512062b83..23c3b6eac 100644 --- a/tool/build_image_proxy.yaml +++ b/tool/build_image_proxy.yaml @@ -16,7 +16,7 @@ steps: echo 'Only deploy from the dartlang-pub project' exit 1; fi - if [[ ! "$TAG_NAME" =~ ^image_proxy-.*$ ]]; then + if [[ ! "$TAG_NAME" =~ ^image-proxy-.*$ ]]; then echo 'This script is only intended for use on image_proxy- tags' echo 'Current tag': $TAG_NAME exit 1;