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