From 58c8f09c77397c5512c97e4961b45a9d22a4b448 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 00:54:21 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20use=20needs=20output=20di?= =?UTF-8?q?rectly=20in=20docker=20compose=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci-cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index ca853ac..09811d8 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -169,7 +169,7 @@ jobs: - name: Start build cache container with Docker Compose run: | echo "Starting build cache container..." - export DEPS_HASH="${{ env.DEPS_HASH }}" + export DEPS_HASH="${{ needs.build-cache.outputs.deps_hash }}" docker compose -f docker-compose.build.yml up -d build-cache - name: Generate Swagger Docs using Docker Compose