We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2758690 commit 93a5fbdCopy full SHA for 93a5fbd
tool/build_image_proxy.yaml
@@ -16,8 +16,9 @@ steps:
16
echo 'Only deploy from the dartlang-pub project'
17
exit 1;
18
fi
19
- if [[ "$TAG_NAME" != image_proxy-* ]]; then
+ if [[ ! "$TAG_NAME" =~ ^image_proxy-.*$ ]]; then
20
echo 'This script is only intended for use on image_proxy-<version> tags'
21
+ echo 'Current tag': $TAG_NAME
22
23
24
docker build -t us-central1-docker.pkg.dev/$PROJECT_ID/image-proxy/image-proxy:$TAG_NAME . --file pkg/image_proxy/Dockerfile
0 commit comments