We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a1af3 commit c16c56dCopy full SHA for c16c56d
1 file changed
.github/workflows/release.yml
@@ -74,12 +74,15 @@ jobs:
74
inputs: >-
75
./dist/*.tar.gz
76
./dist/*.whl
77
+ - name: Debug Print github.ref_name
78
+ run: >-
79
+ echo "github.ref_name: ${{ github.ref_name }}"
80
- name: Create GitHub Release
81
env:
82
GITHUB_TOKEN: ${{ github.token }}
83
run: >-
84
gh release create
- '${{ github.event.release.tag_name }}'
85
+ 'v0.1.7'
86
--repo '${{ github.repository }}'
87
--notes ""
88
- name: Upload artifact signatures to GitHub Release
@@ -90,5 +93,5 @@ jobs:
90
93
# sigstore-produced signatures and certificates.
91
94
92
95
gh release upload
- '${{ github.event.release.tag_name }}' dist/**
96
+ 'v0.1.7' dist/**
97
0 commit comments