Skip to content

Commit 5afadc7

Browse files
authored
[MM-51751] Fix regex for tags trigger in CI/CD (#210)
1 parent 720fe5e commit 5afadc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- completed
88
push:
99
tags:
10-
- "^v.*"
10+
- "v*"
1111

1212
permissions:
1313
contents: read

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- master
88
tags:
9-
- "^v.*"
9+
- "v*"
1010
pull_request:
1111

1212
permissions:

0 commit comments

Comments
 (0)