diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index ec391dd..203ba78 100644 --- a/.github/workflows/release-wheels.yml +++ b/.github/workflows/release-wheels.yml @@ -67,8 +67,8 @@ jobs: run: python3 -m cibuildwheel --output-dir wheelhouse - uses: actions/upload-artifact@v4 with: - name: wheel-cp${{ matrix.python }}-${{ matrix.platform_id }}.whl - path: ./wheelhouse/*.whl + name: wheel-cp${{ matrix.python }}-${{ matrix.platform_id }} + path: wheelhouse/*.whl publish-to-pypi: name: Publish Python 🐍 distribution 📦 to PyPI needs: @@ -84,6 +84,7 @@ jobs: uses: actions/download-artifact@v4 with: name: wheel-cp*.whl - path: wheelhouse/ + path: wheelhouse/*.whl + merge-multiple: true - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1