diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 514568c6..9bacb9d2 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -51,8 +51,9 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse python/ - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: + name: wheel-${{ matrix.os }}-${{ matrix.arch }} path: ./wheelhouse/*.whl publish: @@ -63,7 +64,11 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 + with: + pattern: wheel-* + merge-multiple: true + path: ./wheelhouse/ - name: Publish wheels to PyPI