Skip to content

Commit 865a23a

Browse files
authored
Merge pull request #7691 from radarhere/wheels
Updated Linux and macOS wheels matrix variable name
2 parents 27eacdd + 05e7370 commit 865a23a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ jobs:
3939
include:
4040
- name: "macOS x86_64"
4141
os: macos-latest
42-
archs: x86_64
42+
cibw_arch: x86_64
4343
macosx_deployment_target: "10.10"
4444
- name: "macOS arm64"
4545
os: macos-latest
46-
archs: arm64
46+
cibw_arch: arm64
4747
macosx_deployment_target: "11.0"
4848
- name: "manylinux2014 and musllinux x86_64"
4949
os: ubuntu-latest
50-
archs: x86_64
50+
cibw_arch: x86_64
5151
- name: "manylinux_2_28 x86_64"
5252
os: ubuntu-latest
53-
archs: x86_64
53+
cibw_arch: x86_64
5454
build: "*manylinux*"
5555
manylinux: "manylinux_2_28"
5656
steps:
@@ -67,7 +67,7 @@ jobs:
6767
python3 -m pip install -r .ci/requirements-cibw.txt
6868
python3 -m cibuildwheel --output-dir wheelhouse
6969
env:
70-
CIBW_ARCHS: ${{ matrix.archs }}
70+
CIBW_ARCHS: ${{ matrix.cibw_arch }}
7171
CIBW_BUILD: ${{ matrix.build }}
7272
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: ${{ matrix.manylinux }}
7373
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }}
@@ -77,7 +77,7 @@ jobs:
7777

7878
- uses: actions/upload-artifact@v4
7979
with:
80-
name: dist-${{ matrix.os }}-${{ matrix.archs }}${{ matrix.manylinux && format('-{0}', matrix.manylinux) }}
80+
name: dist-${{ matrix.os }}-${{ matrix.cibw_arch }}${{ matrix.manylinux && format('-{0}', matrix.manylinux) }}
8181
path: ./wheelhouse/*.whl
8282

8383
windows:

0 commit comments

Comments
 (0)