ci(debug): add workspace dump and docker install/version steps
Some checks failed
dev / build-and-push (push) Waiting to run
dev-test-2 / build-and-push (push) Failing after 5s

This commit is contained in:
Nicolas Cantu 2025-09-10 13:36:31 +02:00
parent 4930e5ef3e
commit b3cb20ab41

View File

@ -34,6 +34,22 @@ jobs:
run: |
git submodule sync --recursive
git submodule update --init --recursive
- name: Debug workspace
run: |
pwd
ls -la
git rev-parse --abbrev-ref HEAD || true
if [ -f .gitmodules ]; then echo ".gitmodules present"; cat .gitmodules; else echo "NO .gitmodules"; fi
git submodule status || true
- name: Install docker client
run: |
apt-get update -y
apt-get install -y docker.io
- name: Docker info
run: |
which docker || true
docker version || true
docker info || true
- name: Build and push images
env:
REGISTRY: git.4nkweb.com