From 623f822fde2a6472f15342cfa35a9f98eb3687b6 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Thu, 9 Apr 2026 11:56:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Fix:=20Avoid=20workspace=20colli?= =?UTF-8?q?sion=20by=20using=20different=20mount=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/docker-push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/docker-push.yaml b/.gitea/workflows/docker-push.yaml index fd48d53..731b4f9 100644 --- a/.gitea/workflows/docker-push.yaml +++ b/.gitea/workflows/docker-push.yaml @@ -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'