List what's in the workspace to see what issue might be
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 1s
CI/CD Pipeline (Fully Isolated DinD) / Build and Push Docker Images (DinD) (push) Has been skipped
CI/CD Pipeline (Fully Isolated DinD) / Deploy to Production (push) Has been skipped

This commit is contained in:
continuist 2025-07-05 12:37:43 -04:00
parent 5c685694f9
commit 66a1220aaa

View file

@ -70,7 +70,7 @@ jobs:
docker exec ci-dind mkdir -p /workspace
# Checkout code directly into DinD container using the Forgejo repository that triggered the build
docker exec ci-dind sh -c "cd /workspace && rm -rf * .* 2>/dev/null || true && git clone ${{ env.GITEA_SERVER_URL }}/${{ env.GITEA_REPOSITORY }}.git ."
docker exec ci-dind sh -c "cd /workspace && ls -la && rm -rf * .* 2>/dev/null || true && ls -la && git clone ${{ env.GITEA_SERVER_URL }}/${{ env.GITEA_REPOSITORY }}.git temp-repo && cp -r temp-repo/. . && rm -rf temp-repo"
# Copy docker-compose.test.yml to DinD container (in case it's not in the repo)
docker cp docker-compose.test.yml ci-dind:/workspace/ || true