diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index c90cc6bfb..e448f42c6 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -64,9 +64,9 @@ jobs: env: MACOSX_DEPLOYMENT_TARGET: "10.9" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: - name: wheelhouse + name: wheelhouse-${{ runner.os }} path: ./wheelhouse/*.whl ################################################################################ @@ -87,12 +87,12 @@ jobs: - name: Download wheelhouse uses: actions/download-artifact@v4 with: - name: wheelhouse + pattern: wheelhouse-* path: wheelhouse merge-multiple: true - name: Publish to GitHub Releases - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: wheelhouse/*.whl fail_on_unmatched_files: true @@ -119,7 +119,7 @@ jobs: - name: Download wheelhouse uses: actions/download-artifact@v4 with: - name: wheelhouse + pattern: wheelhouse-* path: wheelhouse merge-multiple: true