From 5502b5799e16f1aa4b25cadb57d927dfee8aa9c8 Mon Sep 17 00:00:00 2001 From: OlegWock Date: Fri, 5 Dec 2025 10:20:38 +0100 Subject: [PATCH] fix: Do not pass ref_name directly into the release command --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29aa1502e..20b98b3c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,8 +33,9 @@ jobs: env: GH_TOKEN: ${{ github.token }} GH_REPO: ${{ github.repository }} + RELEASE_TAG: ${{ github.ref_name }} run: | - gh release upload ${{ github.ref_name }} wheels/* --clobber + gh release upload "$RELEASE_TAG" wheels/* --clobber publish-to-pypi: name: Publish Python wheels to PyPI