diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6319244..f22a40e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: sdist + name: artifact-sdist path: ./dist/*.tar.gz build_wheels: @@ -50,7 +50,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: wheels-${{ matrix.os }} + name: artifact-wheels-${{ matrix.os }} path: ./dist/*.whl publish: @@ -59,8 +59,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact + pattern: artifact-* path: dist + merge-multiple: true - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1