Completely clean workspace folder including hidden
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:35:53 -04:00
parent 59233883fc
commit 5c685694f9

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 .git && git clone ${{ env.GITEA_SERVER_URL }}/${{ env.GITEA_REPOSITORY }}.git ."
docker exec ci-dind sh -c "cd /workspace && rm -rf * .* 2>/dev/null || true && git clone ${{ env.GITEA_SERVER_URL }}/${{ env.GITEA_REPOSITORY }}.git ."
# 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