🐛 fix: use env var instead of needs output for DEPS_HASH

This commit is contained in:
2026-04-08 00:53:21 +02:00
parent 68a5cf7876
commit 6eaca669cd

View File

@@ -166,7 +166,7 @@ jobs:
- name: Start build cache container with Docker Compose
run: |
echo "Starting build cache container..."
export DEPS_HASH="${{ needs.build-cache.outputs.deps_hash }}"
export DEPS_HASH="${{ env.DEPS_HASH }}"
docker compose -f docker-compose.build.yml up -d build-cache
- name: Generate Swagger Docs using Docker Compose