Skip to content

Commit

Permalink
fix(ci): set correct tag regex
Browse files Browse the repository at this point in the history
  • Loading branch information
vareversat committed Apr 21, 2024
1 parent c5cbbde commit ee021c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.tag-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Beta Tag workflow
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-beta$'
- v[0-9]+.[0-9]+.[0-9]+-beta$

concurrency:
group: ci-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.tag-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Production Tag workflow
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+$'
- v[0-9]+.[0-9]+.[0-9]+$

concurrency:
group: ci-${{ github.ref }}
Expand Down

0 comments on commit ee021c1

Please sign in to comment.