🐳 Fix: Avoid workspace collision by using different mount path

This commit is contained in:
2026-04-09 11:56:27 +02:00
parent 411e7210be
commit 623f822fde

View File

@@ -65,10 +65,10 @@ jobs:
if: steps.cache-swagger-restore.outputs.cache-hit != 'true'
run: >
docker run --rm
-v ${GITHUB_WORKSPACE}:/workspace
-v ${GITHUB_WORKSPACE}:/host-workspace
-w /workspace
gitea.arcodange.lab/arcodange/dance-lessons-coach-build-cache:${{ steps.calc_hash.outputs.deps_hash }}
sh -c "ls -la && pwd && ls -la && find . -name go.mod -type f 2>/dev/null"
sh -c "cp -r /host-workspace/. /workspace && ls -la && pwd && find . -name go.mod -type f 2>/dev/null"
- name: Save Swagger Docs Cache
if: steps.cache-swagger-restore.outputs.cache-hit != 'true'