Skip to content

Commit 3946bd0

Browse files
committed
GITHUB_* variables aren't in the env context. Sigh.
1 parent 3ff3012 commit 3946bd0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
steps:
1717
- uses: actions/[email protected]
1818
- run: |
19-
gh release create ${{ env.GITHUB_REF_NAME }} \
19+
gh release create "${GITHUB_REF_NAME}" \
2020
--generate-notes --latest --verify-tag \
21-
--repo ${{ env.GITHUB_REPOSITORY }}
22-
gh release download ${{ env.GITHUB_REF_NAME }} \
21+
--repo "${GITHUB_REPOSITORY}"
22+
gh release download "${GITHUB_REF_NAME}" \
2323
--archive tar.gz \
24-
--repo ${{ env.GITHUB_REPOSITORY }}
25-
gh release download ${{ env.GITHUB_REF_NAME }} \
24+
--repo "${GITHUB_REPOSITORY}"
25+
gh release download "${GITHUB_REF_NAME}" \
2626
--archive zip \
27-
--repo ${{ env.GITHUB_REPOSITORY }}
28-
gh release upload ${{ env.GITHUB_REF_NAME }} \
27+
--repo "${GITHUB_REPOSITORY}"
28+
gh release upload "${GITHUB_REF_NAME}" \
2929
*.tar.gz *.zip \
30-
--repo ${{ env.GITHUB_REPOSITORY }}
30+
--repo "${GITHUB_REPOSITORY}"
3131
shell: bash

0 commit comments

Comments
 (0)