From 9e46bb1accf77061fbfb3081450265a65fa27944 Mon Sep 17 00:00:00 2001 From: Irfan Alibay Date: Mon, 13 Oct 2025 19:10:45 +0100 Subject: [PATCH] Fix deployment workflow --- .github/workflows/deploy.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index ca270cc..a2ba095 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -51,6 +51,7 @@ jobs: (github.event_name == 'release' && github.event.action == 'published') uses: actions/upload-artifact@v4 with: + name: wheel-${{ matrix.buildplat[0] }}-${{ matrix.python }} path: wheelhouse/*.whl retention-days: 7 @@ -73,6 +74,7 @@ jobs: (github.event_name == 'release' && github.event.action == 'published') uses: actions/upload-artifact@v4 with: + name: sdist path: dist/*.tar.gz retention-days: 7 @@ -89,10 +91,10 @@ jobs: runs-on: ubuntu-latest needs: [build_wheels, build_sdist] steps: - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 with: - name: artifact path: dist + merge-multiple: true - name: upload_source_and_wheels uses: pypa/gh-action-pypi-publish@v1.13.0 @@ -115,8 +117,8 @@ jobs: steps: - uses: actions/download-artifact@v4.1.7 with: - name: artifact path: dist + merge-multiple: true - name: upload_source_and_wheels uses: pypa/gh-action-pypi-publish@v1.13.0