MAESTRO: Fix release workflow to trigger on date-based tags

The workflow was only triggering on semantic version tags (v*.*.*) but
releases were being created with date-based tags (e.g., 2025-11-27).
Added '20*' pattern to also trigger on date-based tags.
This commit is contained in:
Pedram Amini
2025-11-26 20:39:42 -06:00
parent 6da24eaa0e
commit 84904fd41c

View File

@@ -5,7 +5,8 @@ name: Release Maestro
on:
push:
tags:
- 'v*.*.*'
- 'v*.*.*' # Semantic version tags (e.g., v1.0.0)
- '20*' # Date-based tags (e.g., 2025-11-27)
workflow_dispatch:
permissions: