[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
|
- completed
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "^v.*"
|
- "v*"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
tags:
|
tags:
|
||||||
- "^v.*"
|
- "v*"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
|
Reference in a new issue