[MM-51751] Fix regex for tags trigger in CI/CD (#177)
This commit is contained in:
parent
121997e77a
commit
d17821a331
2 changed files with 2 additions and 2 deletions
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
- completed
|
||||
push:
|
||||
tags:
|
||||
- "^v.*"
|
||||
- "v*"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
|||
branches:
|
||||
- master
|
||||
tags:
|
||||
- "^v.*"
|
||||
- "v*"
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
|
|
Reference in a new issue