We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caa957f commit bdc39a2Copy full SHA for bdc39a2
1 file changed
.github/workflows/buildwheel.yml
@@ -476,7 +476,8 @@ jobs:
476
- name: Create GitHub release
477
env:
478
GH_TOKEN: ${{ github.token }}
479
- run: >
480
- gh release create ${{ github.ref_name }} dist/*
481
- --title "python-flint ${{ github.ref_name }}"
482
- --notes "https://github.com/flintlib/python-flint?tab=readme-ov-file#changelog"
+ REF_NAME: ${{ github.ref_name }}
+ run: |
+ gh release create "$REF_NAME" dist/* \
+ --title "python-flint $REF_NAME" \
483
+ --notes "https://github.com/flintlib/python-flint?tab=readme-ov-file#changelog"
0 commit comments