File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed
Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,10 @@ name: Build Packages
22on :
33 workflow_call :
44 inputs :
5- python-versions :
5+ CIBW_BUILD :
66 required : false
77 type : string
8- default : >
9- join([], " ")
8+ default : " cp310-* cp311-* cp312-* cp313-*"
109
1110concurrency :
1211 group : ${{ github.workflow}}-${{ github.head_ref }}
@@ -42,11 +41,11 @@ jobs:
4241 - name : Build wheels
43424443 env :
45- CIBW_BUILD :
44+ CIBW_BUILD : ${{ inputs.CIBW_BUILD }}
4645
4746 - uses : actions/upload-artifact@v4
4847 with :
49- name : wheels-${{ matrix.python-version[1] }}-${{ matrix. platform[0] }}
48+ name : wheels-${{ matrix.platform[0] }}
5049 path : ./wheelhouse/*.whl
5150
5251 sdist :
Original file line number Diff line number Diff line change 1+ name : run-package-builds.yml
2+ on :
3+ workflow_dispatch :
4+
5+ jobs :
6+ uses : ./.github/workflows/packages.yml
You can’t perform that action at this time.
0 commit comments