From ce774432ba4d1d31fd615140f13ab8e301249437 Mon Sep 17 00:00:00 2001 From: Chen Pei Date: Mon, 11 May 2026 11:22:05 +0800 Subject: [PATCH] ci: Fix tag push and release triggers - Add tags filter to push event so pushing a tag triggers the workflow - Add release: published event to trigger on GitHub Release publishing Signed-off-by: Chen Pei --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe308c8..6ba2414 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,10 @@ name: ci-build on: push: + tags: + - '**' + release: + types: [published] pull_request: workflow_dispatch: schedule: