From e91a0073a5c9b4ff62153875cbcb2f6b9bee200c Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Mon, 9 Feb 2026 19:39:29 -0800 Subject: [PATCH] CI: quote release title to account for spaces in CLI arg I noticed the gh-cli had not worked as intended to create a GitHub release. Turns out the space in the title was interpreted as a CLI positional argument. Using quotes should fix that. --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f2327d20..1c4acf4d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -181,5 +181,5 @@ jobs: gh release create ${TAG} --verify-tag --repo ${REPO} - --title ${TITLE} + --title "${TITLE}" --notes-file ReleaseNotes.md