From e67dfebbbd18249276f48d4e69bf929637162b23 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 11 Jan 2026 13:37:28 +0100 Subject: [PATCH] feat: trigger CI workflow on version tags Build and push Docker images when version tags (v*) are pushed, enabling automated image builds on releases. Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 5f07e83..dbdec04 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -3,6 +3,7 @@ name: robotframework on: push: branches: [main] + tags: ['v*'] pull_request: branches: [main]