CI: ignore pre-release and alpha tags in electron build workflow

This commit is contained in:
CaIon
2025-10-15 19:55:53 +08:00
parent 69b87b5d8e
commit 64a97092c9

View File

@@ -4,6 +4,8 @@ on:
push:
tags:
- '*' # Triggers on version tags like v1.0.0
- '!*-*' # Ignore pre-release tags like v1.0.0-beta
- '!*-alpha*' # Ignore alpha tags like v1.0.0-alpha
workflow_dispatch: # Allows manual triggering
jobs: