From e333c69a7174dce3097bde977d59e41bc0f3e03a Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 00:55:59 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20set=20DEPS=5FHASH=20as=20?= =?UTF-8?q?regular=20variable=20before=20export?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci-cd.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index 0cec13b..e9f7d50 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -169,8 +169,9 @@ jobs: - name: Start build cache container with Docker Compose run: | echo "Starting build cache container..." - export DEPS_HASH="${{ needs.build-cache.outputs.deps_hash }}" + DEPS_HASH="${{ needs.build-cache.outputs.deps_hash }}" echo "DEPS_HASH=$DEPS_HASH" + export DEPS_HASH docker compose -f docker-compose.build.yml up -d build-cache - name: Generate Swagger Docs using Docker Compose