From 3de0d2f0fe9bac44b2eb16f381c3fcbfc94e0bef 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 2cc1deae..29bdc0c3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -291,6 +291,7 @@ jobs: MAIL_HOST=mailpit MAIL_PORT=1025 APP_MAIL_FROM=noreply@local + IMPORT_HOST_DIR=/tmp/dummy-import EOF - name: Bring up minio