fix: Correct regular expression for version tags in release workflow

This commit is contained in:
Prad Nukala 2024-12-11 17:46:18 -05:00
parent ec57c76a2a
commit ee12bf684e

View File

@ -2,7 +2,8 @@ name: Versioned Release
on:
push:
tags: ["v*"]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches: ["develop"]
workflow_dispatch: