From 9211d1faa34c446e25811da6253e6ffbfe06c7b5 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 13 Nov 2025 16:41:35 -0600 Subject: [PATCH] Use double-quotes for GITHUB_REF_NAME shell variable. This properly expands it. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 067e5d1d4..2bb6b84c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,7 +83,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} run: >- gh release create - '${GITHUB_REF_NAME}' + "${GITHUB_REF_NAME}" --repo '${{ github.repository }}' --notes "" - name: Upload artifact signatures to GitHub Release @@ -94,7 +94,7 @@ jobs: # sigstore-produced signatures and certificates. run: >- gh release upload - '${GITHUB_REF_NAME}' dist/** + "${GITHUB_REF_NAME}" dist/** --repo '${{ github.repository }}' publish-to-testpypi: