From 627061cdbb42a511e1efea8b48d72c752272d04e Mon Sep 17 00:00:00 2001 From: Alexander Renz Date: Wed, 7 Jan 2026 20:53:20 +0100 Subject: [PATCH] fix: restore automatic builds on tag push --- .gitea/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 26cdefb..0e5fd7f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,10 +6,9 @@ name: CI/CD on: push: branches: [main, master, develop] + tags: ['v*'] pull_request: branches: [main, master] - release: - types: [published] jobs: test: @@ -64,7 +63,7 @@ jobs: name: Build & Release runs-on: ubuntu-latest needs: [test, lint] - if: github.event_name == 'release' + if: startsWith(github.ref, 'refs/tags/v') container: image: golang:1.24-bookworm steps: