diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f5f1ab3..173e50e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -54,7 +54,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.target }} path: dist windows: @@ -78,7 +78,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.target }} path: dist macos: @@ -101,7 +101,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.target }} path: dist sdist: @@ -117,7 +117,7 @@ jobs: - name: Upload sdist uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-sdist path: dist release: @@ -130,7 +130,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels + pattern: dist-* + merge-multiple: true + path: dist - name: Publish to PyPI uses: PyO3/maturin-action@v1 with: