From c1e17a14491173293598e64d6d0040d089280311 Mon Sep 17 00:00:00 2001 From: sirfz Date: Thu, 28 Mar 2024 17:42:53 +0200 Subject: [PATCH] GitHub Actions: upload-artifact v4 fix --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c219b2c..a9d9d71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,15 +15,15 @@ jobs: strategy: matrix: config: - - { os: ubuntu-22.04, arch: x86_64, platform: manylinux_x86_64, build: cp* } - - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp312 } - - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp311 } - - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp310 } - - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp39 } - - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp38 } - - { os: ubuntu-22.04, arch: x86_64, platform: musllinux_x86_64, build: cp* } - - { os: macos-12, arch: x86_64, platform: macosx_x86_64, build: cp* } - - { os: macos-12, arch: arm64, platform: macosx_arm64, build: cp* } + - { os: ubuntu-22.04, arch: x86_64, platform: manylinux_x86_64, build: cp*, tag: cpall } + - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp312, tag: cp312 } + - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp311, tag: cp311 } + - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp310, tag: cp310 } + - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp39, tag: cp39 } + - { os: ubuntu-22.04, arch: aarch64, platform: manylinux_aarch64, build: cp38, tag: cp38 } + - { os: ubuntu-22.04, arch: x86_64, platform: musllinux_x86_64, build: cp*, tag: cpall } + - { os: macos-12, arch: x86_64, platform: macosx_x86_64, build: cp*, tag: cpall } + - { os: macos-12, arch: arm64, platform: macosx_arm64, build: cp*, tag: cpall } steps: - name: Checkout @@ -45,7 +45,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: wheels-${{ matrix.config.platform }} + name: "wheels-${{ matrix.config.platform }}-${{ matrix.config.tag }}" path: ./wheelhouse/*.whl build_sdist: