Skip to content

Commit 7bcf66c

Browse files
authored
[MNT] ensure check_tag step gates the pypi_release workflow (#2376)
The `check_tag` step in the `pypi_release` workflow is supposed to prevent typos in version numbers, but currently does not act as a gate for the release. This bug is fixed by adding the intended `needs` directive.
1 parent 033169a commit 7bcf66c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/pypi_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
build_wheels:
3535
name: Build wheels
3636
runs-on: ubuntu-latest
37+
needs: [check_tag]
3738

3839
steps:
3940
- uses: actions/checkout@v7

0 commit comments

Comments
 (0)