Skip to content

Commit cc6e277

Browse files
committed
fix(ci): set correct tag regex (2)
1 parent ee021c1 commit cc6e277

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/push.tag-beta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Beta Tag workflow
33
on:
44
push:
55
tags:
6-
- v[0-9]+.[0-9]+.[0-9]+-beta$
6+
- 'v[0-9]+.[0-9]+.[0-9]+-beta'
77

88
concurrency:
99
group: ci-${{ github.ref }}

.github/workflows/push.tag-prod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Production Tag workflow
33
on:
44
push:
55
tags:
6-
- v[0-9]+.[0-9]+.[0-9]+$
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
77

88
concurrency:
99
group: ci-${{ github.ref }}

0 commit comments

Comments
 (0)