Skip to content

Commit

Permalink
fix: Correct regular expression for version tags in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
prnk28 committed Dec 11, 2024
1 parent ec57c76 commit ee12bf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Versioned Release

on:
push:
tags: ["v*"]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches: ["develop"]
workflow_dispatch:

Expand Down

0 comments on commit ee12bf6

Please sign in to comment.