1
0
mirror of https://github.com/google/benchmark.git synced 2025-04-13 13:01:54 +08:00

Add artifact name to download before wheel PyPI upload

Otherwise, the folder structure gets messed up, and twine errors out.
This commit is contained in:
Nicholas Junge 2024-11-28 19:14:19 +01:00
parent c58e6d0710
commit a817595364

View File

@ -77,7 +77,7 @@ jobs:
merge_wheels:
name: Merge all built wheels into one artifact
runs-on: ubuntu-latest
needs: build_wheels
needs: [build_sdist, build_wheels]
steps:
- name: Merge wheels
uses: actions/upload-artifact/merge@v4
@ -96,5 +96,6 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1