Add debug print statements
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 2s
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:57:48 -04:00
parent 58b862debe
commit 8ae2b767cb

View file

@ -69,7 +69,11 @@ jobs:
# Use the pre-configured workspace directory (created in CI guide Step 7.3)
# Clone the repository to workspace
git clone "${{ env.GITEA_SERVER_URL }}/${{ env.GITEA_REPOSITORY }}" /tmp/ci-workspace
echo "GITEA_SERVER_URL: ${{ env.GITEA_SERVER_URL }}"
echo "GITEA_REPOSITORY: ${{ env.GITEA_REPOSITORY }}"
echo "gitea.server_url: ${{ gitea.server_url }}"
echo "gitea.repository: ${{ gitea.repository }}"
git clone "${{ gitea.server_url }}/${{ gitea.repository }}" /tmp/ci-workspace
cd /tmp/ci-workspace
git checkout "${{ env.GITEA_SHA }}"