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.
This commit is contained in:
j4n
2026-05-19 08:06:03 +02:00
parent 77ed93fb7a
commit ce05b26c77

View File

@@ -9,6 +9,7 @@ name: Trigger Docker build
on: on:
push: push:
branches: [main] branches: [main]
tags: ['[0-9]+.[0-9]+.[0-9]+']
workflow_dispatch: workflow_dispatch:
permissions: {} permissions: {}