Skip to content

Commit d04496a

Browse files
committed
Use double-quotes for GITHUB_REF_NAME shell variable.
This properly expands it.
1 parent 711587e commit d04496a

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
@@ -83,7 +83,7 @@ jobs:
8383
GITHUB_TOKEN: ${{ github.token }}
8484
run: >-
8585
gh release create
86-
'${GITHUB_REF_NAME}'
86+
"${GITHUB_REF_NAME}"
8787
--repo '${{ github.repository }}'
8888
--notes ""
8989
- name: Upload artifact signatures to GitHub Release
@@ -94,7 +94,7 @@ jobs:
9494
# sigstore-produced signatures and certificates.
9595
run: >-
9696
gh release upload
97-
'${GITHUB_REF_NAME}' dist/**
97+
"${GITHUB_REF_NAME}" dist/**
9898
--repo '${{ github.repository }}'
9999
100100
publish-to-testpypi:

0 commit comments

Comments
 (0)