From 84d9ba2ff55f262ecf040c63ea302abe450606b8 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 09:33:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20use=20correct=20workspace?= =?UTF-8?q?=20path=20in=20Docker=20container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove debug step - Use /workspace instead of /workspace/arcodange/dance-lessons-coach - Matches actual Docker volume mount structure --- .gitea/workflows/ci-cd.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index 24665ba..6ae50c3 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -166,11 +166,8 @@ jobs: - name: Export DEPS_HASH for Docker Compose run: echo "DEPS_HASH=${{ needs.build-cache.outputs.deps_hash }}" >> $GITHUB_ENV - - name: Debug workspace structure - run: docker compose -f docker-compose.build.yml run --rm build-cache sh -c "ls -la /workspace && echo '---' && ls -la /workspace/arcodange/dance-lessons-coach 2>/dev/null || echo 'arcodange dir not found' && echo '---' && pwd" - - name: Generate Swagger Docs using Docker Compose - run: docker compose -f docker-compose.build.yml run --rm build-cache sh -c "cd /workspace/arcodange/dance-lessons-coach && pwd && ls -la && go generate ./pkg/server/" + run: docker compose -f docker-compose.build.yml run --rm build-cache sh -c "cd /workspace && go generate ./pkg/server/" - name: Build all packages using Docker Compose run: docker compose -f docker-compose.build.yml run --rm -w /workspace build-cache sh -c "go build ./..."