File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101
101
contents : write
102
102
outputs :
103
103
released : ${{ steps.release.outputs.released }}
104
- newest_release_tag : ${{ steps.release_tag .outputs.newest_release_tag }}
104
+ newest_release_tag : ${{ steps.release .outputs.tag }}
105
105
106
106
steps :
107
107
- uses : actions/checkout@v4
@@ -134,15 +134,6 @@ jobs:
134
134
with :
135
135
github_token : ${{ secrets.GITHUB_TOKEN }}
136
136
137
- - name : Install python-semantic-release
138
- run : python3 -m pip install python-semantic-release==7.34.6
139
-
140
- - name : Get Release Tag
141
- id : release_tag
142
- shell : bash
143
- run : |
144
- echo "newest_release_tag=$(semantic-release print-version --current)" >> $GITHUB_OUTPUT
145
-
146
137
build_wheels :
147
138
needs : [release]
148
139
if : needs.release.outputs.released == 'true'
@@ -184,7 +175,7 @@ jobs:
184
175
run : python -m cibuildwheel --output-dir wheelhouse
185
176
# to supply options, put them in 'env', like:
186
177
env :
187
- CIBW_SKIP : cp36-* cp37-* cp38-* cp39-* cp310-* pp36-* pp37-* pp38-* pp39-* pp310-* ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }}
178
+ CIBW_SKIP : cp36-* cp37-* cp38-* cp39-* cp310-* pp* ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }}
188
179
CIBW_BEFORE_ALL_LINUX : apt-get install -y gcc || yum install -y gcc || apk add gcc
189
180
CIBW_BUILD_VERBOSITY : 3
190
181
REQUIRE_CYTHON : 1
@@ -200,6 +191,10 @@ jobs:
200
191
runs-on : ubuntu-latest
201
192
environment : release
202
193
194
+ permissions :
195
+ id-token : write
196
+ contents : write
197
+
203
198
steps :
204
199
- uses : actions/download-artifact@v4
205
200
with :
You can’t perform that action at this time.
0 commit comments