Skip to content

Commit

Permalink
Fix regex for tags trigger in CI/CD (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Mar 28, 2023
1 parent 0b4bd34 commit e6c337a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- completed
push:
tags:
- "^v.*"
- "v*"

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- master
tags:
- "^v.*"
- "v*"
pull_request:

permissions:
Expand Down

0 comments on commit e6c337a

Please sign in to comment.