File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -172,14 +172,16 @@ jobs:
172172 python :
173173 name : Python wrapping
174174 needs : ['create-release']
175- runs-on : ${{ matrix.os }}
175+ runs-on : ${{ matrix.os.runner }}
176176 strategy :
177177 fail-fast : false
178178 matrix :
179- os :
180- - ubuntu-latest
181- - macos-latest
182- - windows-latest
179+ - os : ubuntu-latest
180+ build : linux
181+ - os : macos-latest
182+ build : macos
183+ - os : windows-latest
184+ build : windows
183185 steps :
184186 - uses : actions/setup-python@v5
185187 with :
@@ -212,7 +214,7 @@ jobs:
212214 shell : bash
213215 run : |
214216 version="${{ needs.create-release.outputs.version }}"
215- gh release upload "$version" ${{ env.ASSET }} ${{ env.ASSET_SUM }}
217+ gh release upload "$version" dist/wheels- ${{ matrix.build }}-*
216218
217219 python-sdist :
218220 name : Python sdist
@@ -233,4 +235,4 @@ jobs:
233235 shell : bash
234236 run : |
235237 version="${{ needs.create-release.outputs.version }}"
236- gh release upload "$version" ${{ env.ASSET }} ${{ env.ASSET_SUM }}
238+ gh release upload "$version" dist/wheels-sdist
You can’t perform that action at this time.
0 commit comments