build
All checks were successful
Build & Deploy KLZ Cables / build-and-deploy (push) Successful in 3m29s

This commit is contained in:
2026-01-26 13:38:48 +01:00
parent feedf30be1
commit 61b4b37111
2 changed files with 7 additions and 5 deletions

View File

@@ -95,7 +95,9 @@ jobs:
echo "✅ Build completed successfully at: $(date -u +'%Y-%m-%d %H:%M:%S UTC')"
echo ""
echo "📊 Image Details:"
docker inspect registry.infra.mintel.me/mintel/klz-cables.com:latest --format=' • Size: {{.Size | div 1024 | div 1024}}MB'
IMAGE_SIZE=$(docker inspect registry.infra.mintel.me/mintel/klz-cables.com:latest --format='{{.Size}}')
IMAGE_SIZE_MB=$((IMAGE_SIZE / 1024 / 1024))
echo " • Size: ${IMAGE_SIZE_MB}MB"
docker inspect registry.infra.mintel.me/mintel/klz-cables.com:latest --format=' • Created: {{.Created}}'
docker inspect registry.infra.mintel.me/mintel/klz-cables.com:latest --format=' • Architecture: {{.Architecture}}'
else