From 21b5692174f2cf23d44a93e26f7b39d21edfe383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Mon, 4 May 2026 15:36:56 +0100 Subject: [PATCH] fix: include production Dockerfile in deploy filter (#350) ## Summary - include Dockerfile.* in CI changes filter - ensure Dockerfile.production-only commits build and deploy ## Verification - python3 assertion confirms Dockerfile.* filter exists and matches Dockerfile.production --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1ee015b..b9dda7cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -272,6 +272,7 @@ jobs: - 'phpunit.xml*' - 'pint.json' - 'Dockerfile' + - 'Dockerfile.*' - 'docker/**' - '.dockerignore' - '.env.example'