Skip to content

Commit 3ccf11e

Browse files
authored
Fix regex for tags trigger in CI/CD (#28)
1 parent c9fd787 commit 3ccf11e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

+1-1
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

+1-1
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)