File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,7 @@ jobs:
110
110
env :
111
111
GITHUB_TOKEN : ${{ github.token }}
112
112
run : |
113
- gh release create
114
- "${{ needs.create-tag.outputs.MPYTHON_VERSION }}"
115
- --repo "$GITHUB_REPOSITORY"
113
+ gh release create ${{ needs.create-tag.outputs.MPYTHON_VERSION }} --repo "$GITHUB_REPOSITORY"
116
114
--notes ""
117
115
- name : Upload artifact signatures to GitHub Release
118
116
env :
@@ -121,9 +119,7 @@ jobs:
121
119
# `dist/` contains the built packages, and the
122
120
# sigstore-produced signatures and certificates.
123
121
run : |
124
- gh release upload
125
- "${{ needs.create-tag.outputs.MPYTHON_VERSION }}" dist/**
126
- --repo "$GITHUB_REPOSITORY"
122
+ gh release upload ${{ needs.create-tag.outputs.MPYTHON_VERSION }} dist/** --repo "$GITHUB_REPOSITORY"
127
123
128
124
publish-to-testpypi :
129
125
name : Publish Package to TestPyPI
You can’t perform that action at this time.
0 commit comments