mirror of
https://github.com/jlengrand/Maestro.git
synced 2026-03-10 08:31:19 +00:00
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:
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user