fix(workflows): Update branch filter in Docker workflow (#5616)

* fix(workflows): Update branch filter in Docker workflow
- Change branch filter from wildcard to 'main'
- Ensures that the workflow only triggers on the main branch
This commit is contained in:
Adrian Priestley
2025-11-09 23:41:16 +00:00
committed by GitHub
parent 14f261b1dd
commit 0bf48d7a1b

View File

@@ -11,7 +11,7 @@ on:
- "!.github/workflows/**"
- ".github/workflows/docker.yml"
branches:
- "*"
- "main"
tags:
- "v?[0-9]+.[0-9]+.[0-9]*"
workflow_dispatch: