🐛 fix: set DEPS_HASH as regular variable before export

This commit is contained in:
2026-04-08 00:55:59 +02:00
parent 841b23bb32
commit e333c69a71

View File

@@ -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