diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4e1c30..589add2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,12 +52,12 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] cibw_arch: ["auto64", "aarch64", "universal2"] cibw_python: - - "cp38-*" - - "cp39-*" - - "cp310-*" - - "cp311-*" - - "cp312-*" - - "cp313-*" + - "cp38" + - "cp39" + - "cp310" + - "cp311" + - "cp312" + - "cp313" exclude: - os: ubuntu-latest cibw_arch: universal2 @@ -90,7 +90,7 @@ jobs: - uses: pypa/cibuildwheel@7940a4c0e76eb2030e473a5f864f291f63ee879b # v2.21.3 env: CIBW_BUILD_VERBOSITY: 1 - CIBW_BUILD: ${{ matrix.cibw_python }} + CIBW_BUILD: ${{ matrix.cibw_python }}-* CIBW_ARCHS: ${{ matrix.cibw_arch }} CIBW_TEST_EXTRAS: "test" CIBW_TEST_COMMAND: "python {project}/tests/__init__.py" @@ -99,7 +99,7 @@ jobs: - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: - name: dist-${{ matrix.os }}-${{ matrix.cibw_arch }}-${{ matrix.cibw_python.split('-')[0] }} + name: dist-${{ matrix.os }}-${{ matrix.cibw_arch }}-${{ matrix.cibw_python }} path: wheelhouse/*.whl publish: