Skip to content

Commit

Permalink
Prevent globbing and word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
rvermeulen committed Nov 17, 2023
1 parent f3881b2 commit 579e425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
release=$( { gh release view v$RELEASE_VERSION --json name,isDraft; } || echo "" )
release=$( { gh release view "v$RELEASE_VERSION" --json name,isDraft; } || echo "" )
if [[ -z "$release" ]]; then
echo "Release v$RELEASE_VERSION does not exist. Proceeding"
echo "create_draft_release=true" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 579e425

Please sign in to comment.