fix: trigger CI on version tag push instead of release event

Changed workflow trigger from release:published to push:tags:v[0-9]*
so that pushing a version tag triggers the build pipeline.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-05 09:52:43 +01:00
co-authored by Claude Opus 4.5
parent 3617218359
commit 6dd1c2e2a9
+3 -2
View File
@@ -1,8 +1,9 @@
name: Build and Push
on:
release:
types: [published]
push:
tags:
- 'v[0-9]*'
jobs:
release: