Try to debug build

This commit is contained in:
2025-11-20 01:38:16 +01:00
parent 95ce447496
commit ee8efecdec
6 changed files with 142 additions and 2 deletions

View File

@@ -32,6 +32,22 @@ jobs:
registry: git.harmonylab.ovh
username: admin
password: Apslxnap12bn23
- name: Debug Docker and Registry
run: |
echo "=== Docker version ==="
docker version
echo "=== Docker info ==="
docker info
echo "=== Current tags ==="
docker images | grep "$DOCKER_REGISTRY_URL"
echo "=== Test simple image push ==="
docker pull busybox:latest
docker tag busybox:latest $DOCKER_REGISTRY_URL/$DOCKER_REGISTRY_ORG/test-busybox:latest
docker push $DOCKER_REGISTRY_URL/$DOCKER_REGISTRY_ORG/test-busybox:latest || echo "Test push failed"
# Build the Docker image
- name: Build the Docker image