diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 6ffbad9a587..e53893c3413 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -213,5 +213,19 @@ jobs: permissions: id-token: write steps: + - uses: actions/download-artifact@v4 + - name: Merge artifacts + run: | + for artifact in macOS_x86_64 \ + macOS_arm64 \ + manylinux2014_musllinux \ + manylinux_2_28 \ + windows_x86 \ + windows_x64 \ + windows_arm64 \ + sdist; do + mv $artifact/* . + rmdir $artifact + done - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1