From 15d8b3c1eadcf4880c18416a39475eff8a964ddc Mon Sep 17 00:00:00 2001 From: wannesm Date: Wed, 19 Jun 2024 18:43:39 +0200 Subject: [PATCH] deploy.yml: Upgrade action versions --- .github/workflows/deploy.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b6a8501..6d93165 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -44,7 +44,7 @@ jobs: - name: Store wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.os }}-${{ matrix.python-version }} path: dist/*.whl @@ -82,7 +82,7 @@ jobs: - name: Store wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.os }}-${{ matrix.python-version }} path: dist/*.whl build_windows: @@ -134,7 +134,7 @@ jobs: - name: Store wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-${{ matrix.os }}-${{ matrix.python-version }} path: dist/*.whl build_sdist: @@ -154,7 +154,7 @@ jobs: - name: Store artifacts uses: actions/upload-artifact@v4 with: - name: wheels + name: dist-source path: dist/*.tar.gz @@ -168,7 +168,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels + pattern: dist-* + merge-multiple: true path: dist - name: Publish package to PyPI