From 3091205f205e08418011125ce84e0fdeb61552e5 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Tue, 4 Nov 2025 15:51:33 +0100 Subject: [PATCH] chore: trigger deployment with all fixes Trigger pipeline to deploy all four cumulative fixes: 1. Sequential push strategy (prevents 499 registry errors) 2. Stable git-SHA IMAGE_TAG format (fixes manifest not found) 3. build: null overrides (prevents build context errors) 4. Always-sync docker-compose files (ensures config updates deploy) This source file change triggers the pipeline execution since workflow file changes are filtered by IGNORE_PATTERN. --- src/Application/Website/ShowHome.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Website/ShowHome.php b/src/Application/Website/ShowHome.php index 82b9c33c..4b56399d 100644 --- a/src/Application/Website/ShowHome.php +++ b/src/Application/Website/ShowHome.php @@ -17,7 +17,7 @@ final readonly class ShowHome #[Route(path: '/', method: Method::GET, name: WebRoutes::HOME)] public function home(HomeRequest $request, string $test = 'hallo'): ViewResult { - // Production deployment trigger - fix build context + // Production deployment trigger - apply all deployment fixes $model = new HomeViewModel('Hallo Welt!'); return new ViewResult( template: 'test',