From 12fafe0e53a277da58f79926678aff00c0f339db Mon Sep 17 00:00:00 2001 From: lmbelo Date: Mon, 11 Nov 2024 09:51:56 -0300 Subject: [PATCH] Upload/download artifact changes --- .github/workflows/pypi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 2d03cc1..2fc55a3 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -81,7 +81,7 @@ jobs: - name: Save wheel uses: actions/upload-artifact@v4 with: - name: my-artifacts-${{ matrix.os }}-${{ matrix.python }} + name: artifacts-win32-${{ matrix.python }} path: dist/*.whl if-no-files-found: error @@ -123,7 +123,7 @@ jobs: - name: Save wheel uses: actions/upload-artifact@v4 with: - name: my-artifacts-${{ matrix.os }}-${{ matrix.python }} + name: artifacts-win64-${{ matrix.python }} path: dist/*.whl if-no-files-found: error @@ -140,7 +140,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - pattern: my-artifacts-* + pattern: artifacts-* path: dist merge-multiple: true @@ -162,7 +162,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - pattern: my-artifacts-* + pattern: artifacts-* path: dist merge-multiple: true