Skip to content

Commit d8ae531

Browse files
committed
fix: update branch condition for image tag assignment
Change the branch condition from 'release-*' to 'sync-*' for setting the IMAGE_TAG based on the VERSION file. This aligns the script's behavior with the new branching strategy.
1 parent 673908d commit d8ae531

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hack/update-manifests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ IMAGE_TAG="${IMAGE_TAG:-}"
1818
# if the tag has not been declared, and we are on a release branch, use the VERSION file.
1919
if [ "$IMAGE_TAG" = "" ]; then
2020
branch=$(git rev-parse --abbrev-ref HEAD)
21-
if [[ $branch = release-* ]]; then
21+
if [[ $branch = sync-* ]]; then
2222
pwd
2323
IMAGE_TAG=v$(cat $SRCROOT/VERSION)
2424
fi

0 commit comments

Comments
 (0)