Skip to content

Commit 3762327

Browse files
authored
🐛 Fix version check (#368)
* updates * updates * updates
1 parent 8897a8c commit 3762327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/builder-fetch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -euo pipefail
1414
PREFIX="refs/tags/"
1515

1616
# Extract version.
17-
if [[ "$BUILDER_REF" =~ ^$PREFIX* ]]; then
17+
if [[ "$BUILDER_REF" != "$PREFIX"* ]]; then
1818
echo "Invalid ref: $BUILDER_REF"
1919
exit 2
2020
fi

0 commit comments

Comments
 (0)