Skip to content

Commit e91a007

Browse files
authored
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.
1 parent 6ce62a2 commit e91a007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,5 +181,5 @@ jobs:
181181
gh release create ${TAG}
182182
--verify-tag
183183
--repo ${REPO}
184-
--title ${TITLE}
184+
--title "${TITLE}"
185185
--notes-file ReleaseNotes.md

0 commit comments

Comments
 (0)