Skip to content

Commit c4730cf

Browse files
committed
feat: add double quotes around bash variables
1 parent ca59646 commit c4730cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
then
3131
tag_name+='.dirty'
3232
fi
33-
echo "tag_name=$tag_name" >> $GITHUB_OUTPUT
33+
echo "tag_name=$tag_name" >> "$GITHUB_OUTPUT"
3434
- name: Tag Commit
3535
uses: tvdias/[email protected]
3636
with:
@@ -46,7 +46,7 @@ jobs:
4646
run: |
4747
signature_file="${{ env.INSTALL_SCRIPT_FILE }}.sig"
4848
gpg --local-user 8590BB74C0F559F8AC911C1D8058553A1FD36B23 --pinentry-mode loopback --passphrase ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} --detach-sig --output "$signature_file" --yes ${{ env.INSTALL_SCRIPT_FILE }}
49-
echo "signature_file=$signature_file" >> $GITHUB_OUTPUT
49+
echo "signature_file=$signature_file" >> "$GITHUB_OUTPUT"
5050
- name: Release
5151
id: release
5252
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)