Skip to content

Commit

Permalink
Fix regex for tags trigger in CI/CD (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Mar 30, 2023
1 parent a04c9c3 commit 2b800dd
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 2b800dd

Please sign in to comment.