Skip to content

Commit a0d9ede

Browse files
committed
Try fewer jobs w/ python str
1 parent 09d5c17 commit a0d9ede

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/packages.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ name: Build Packages
22
on:
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

1110
concurrency:
1211
group: ${{ github.workflow}}-${{ github.head_ref }}
@@ -42,11 +41,11 @@ jobs:
4241
- name: Build wheels
4342
uses: pypa/[email protected]
4443
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:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: run-package-builds.yml
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
uses: ./.github/workflows/packages.yml

0 commit comments

Comments
 (0)