From a6d8b98be9af937189846491eb74854a5b4242aa Mon Sep 17 00:00:00 2001 From: Alexander Clausen Date: Fri, 2 Feb 2024 13:08:43 +0100 Subject: [PATCH] Migrate to new requirements from upload-artifact@4 --- .github/workflows/CI.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4ae39d8b..58f99632 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,7 +35,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-linux-${{ matrix.crate }} path: ${{ matrix.crate }}/target/dist linux-test: @@ -86,7 +86,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-windows-${{ matrix.crate }} path: ${{ matrix.crate }}/dist windows-test: @@ -167,7 +167,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-macos-${{ matrix.crate }}-${{ matrix.target }} path: ${{ matrix.crate }}/dist release: @@ -178,7 +178,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels + pattern: wheels-* + merge-multiple: true - name: Publish to PyPI uses: messense/maturin-action@v1 env: