Skip to content

Commit 579e425

Browse files
committed
Prevent globbing and word splitting
1 parent f3881b2 commit 579e425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
env:
6262
GITHUB_TOKEN: ${{ github.token }}
6363
run: |
64-
release=$( { gh release view v$RELEASE_VERSION --json name,isDraft; } || echo "" )
64+
release=$( { gh release view "v$RELEASE_VERSION" --json name,isDraft; } || echo "" )
6565
if [[ -z "$release" ]]; then
6666
echo "Release v$RELEASE_VERSION does not exist. Proceeding"
6767
echo "create_draft_release=true" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)