Skip to content

Commit 0186e70

Browse files
authored
[MNT] ensure release workflow runs only after tag check (#708)
Ensure the `check_tag` workflow that checks validity of the release tag in `release.yml` is the first condition that needs to be satisfied for an actual release happening. Previously, it ran but was not one of the gates.
1 parent 71a5ea1 commit 0186e70

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/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@v6

0 commit comments

Comments
 (0)