diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9fa3513..685cde5 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -60,7 +60,7 @@ jobs: build_arch_wheels: - name: ${{ matrix.python }} on ${{ matrix.arch }} + name: ${{ matrix.python }}-${{ matrix.arch }} runs-on: ubuntu-24.04 strategy: matrix: @@ -94,6 +94,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: + name: arch-wheels-${{ matrix.python }}-${{ matrix.arch }} path: wheelhouse/*.whl build_wheels: @@ -132,6 +133,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: + name: wheels-${{ matrix.python }}-${{ matrix.arch }} path: wheelhouse/*.whl upload_all: @@ -142,7 +144,8 @@ jobs: steps: - uses: actions/download-artifact@v4.1.7 with: - name: artifact + name: artifact-* + merge-multiple: true path: dist - name: List all files