Skip to content

Commit

Permalink
fix github actions for release (#3402)
Browse files Browse the repository at this point in the history
It looks when setting `branches-ignore`, the push on tags will not
trigger the GitHub Actions. Setting `tags` is necessary. (So I have to
manually upload the package again...)

Signed-off-by: Jinzhe Zeng <[email protected]>
  • Loading branch information
njzjz authored Mar 3, 2024
1 parent ec32340 commit 174e908
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches-ignore:
- "gh-readonly-queue/**"
tags:
- "v*"
pull_request:
merge_group:

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package_c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches-ignore:
- "gh-readonly-queue/**"
tags:
- "v*"
pull_request:
merge_group:
concurrency:
Expand Down

0 comments on commit 174e908

Please sign in to comment.