mirror of
https://github.com/google/benchmark.git
synced 2025-04-29 22:40:33 +08:00
Fix wheel job name for PyPI uploads (#1384)
Previously, with the unrolled job matrix, all jobs had to be listed individually in the `needs` section of the PyPI upload job. But as the wheel build job was reimplemented as a job matrix now, with a single build job name `build_wheels`, we need to adjust the name in the PyPI upload job as well here to avoid errors.
This commit is contained in:
parent
6f75bb5273
commit
dc901ff909
2
.github/workflows/wheels.yml
vendored
2
.github/workflows/wheels.yml
vendored
@ -69,7 +69,7 @@ jobs:
|
||||
|
||||
pypi_upload:
|
||||
name: Publish google-benchmark wheels to PyPI
|
||||
needs: [build_sdist, build_linux, build_macos, build_windows]
|
||||
needs: [build_sdist, build_wheels]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
|
Loading…
Reference in New Issue
Block a user