rafactor/ ci(workflows): update branch pattern matching for container build

- Change branch filter pattern from '*' to '**' for improved glob matching
- Ensures workflow triggers on all branches except develop with correct pattern syntax
- Improves CI/CD pipeline reliability by using proper wildcard pattern matching
This commit is contained in:
hongwei 2026-01-09 11:04:50 +01:00
parent 31e39e3773
commit f2b9b2a33d

View File

@ -3,7 +3,7 @@ name: Build and publish container non develop
on:
push:
branches:
- '*'
- '**'
- '!develop'
env: