diff --git a/.github/workflows/github-deploy.yml b/.github/workflows/github-deploy.yml index 7763dd5..f342b70 100644 --- a/.github/workflows/github-deploy.yml +++ b/.github/workflows/github-deploy.yml @@ -25,7 +25,8 @@ jobs: - uses: actions/upload-artifact@v4 with: - path: ./wheelhouse/*.whl + name: dist-${{ matrix.os }}-${{ matrix.python-version }} + path: dist build_sdist: name: Build source distribution @@ -47,7 +48,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact + pattern: dist-* + merge-multiple: true path: dist - uses: pypa/gh-action-pypi-publish@v1.8.14