Skip to content

Commit 822d9ce

Browse files
committed
Fix: remove quotes around regex
1 parent c246fb0 commit 822d9ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-proxy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: checks
2626
shell: bash
2727
run: |
28-
if ! [[ $RELEASE_TAG =~ "^codeql-bundle-v[0-9]+\.[0-9]+\.[0-9]+$" ]]; then
28+
if ! [[ $RELEASE_TAG =~ ^codeql-bundle-v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
2929
echo "Invalid release tag: expected a CodeQL bundle tag in the 'codeql-bundle-vM.N.P' format."
3030
exit 1
3131
fi

0 commit comments

Comments
 (0)