From 5ce085617845d34bdeb1ddbb60d2884dbeaee6fa Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 14 May 2026 10:57:30 +0200 Subject: [PATCH] fix(ci): add IMPORT_HOST_DIR stub to compose-idempotency env file Docker Compose interpolates all variables in the full file even when only a subset of services is requested. The backend service uses IMPORT_HOST_DIR with :? (hard-required), causing the idempotency job to abort before any container starts. A dummy path satisfies the parser; the backend service is never started in this job so the path need not exist. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5aa5d748..e7722f64 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -269,6 +269,7 @@ jobs: MAIL_HOST=mailpit MAIL_PORT=1025 APP_MAIL_FROM=noreply@local + IMPORT_HOST_DIR=/tmp/dummy-import EOF - name: Bring up minio -- 2.49.1