Skip to content

Commit 4b9ce84

Browse files
committed
Fix quotes in GitHub Release environment variables
1 parent f1b12f7 commit 4b9ce84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: GitHub Release
4848
if: startsWith(github.ref, 'refs/tags/')
4949
env:
50-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
TAG_NAME: ${{ github.ref_name }}
50+
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
51+
TAG_NAME: "${{ github.ref_name }}"
5252
run: |
5353
gh release create $env:TAG_NAME $env:Release_Name --title $env:TAG_NAME --generate-notes

0 commit comments

Comments
 (0)