From ce05b26c77344e997f6961cf927aba23c32c9985 Mon Sep 17 00:00:00 2001 From: j4n Date: Tue, 19 May 2026 08:06:03 +0200 Subject: [PATCH] ci: auto-trigger docker build on release tag push docker-dispatch.yaml previously only fired on push to main and manual workflow_dispatch, so tagging 1.11.0 did not build the release image. This change adds matching of X.Y.Z tag. --- .github/workflows/docker-dispatch.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker-dispatch.yaml b/.github/workflows/docker-dispatch.yaml index 3d275643..2aedc5f6 100644 --- a/.github/workflows/docker-dispatch.yaml +++ b/.github/workflows/docker-dispatch.yaml @@ -9,6 +9,7 @@ name: Trigger Docker build on: push: branches: [main] + tags: ['[0-9]+.[0-9]+.[0-9]+'] workflow_dispatch: permissions: {}