extended logging

This commit is contained in:
Brian Bjarke Jensen
2025-10-03 22:58:01 +02:00
parent bb18ae7514
commit f9c58dcd6d
+4
View File
@@ -26,8 +26,10 @@ jobs:
DIGEST=$(echo "$MANIFEST" | jq -r '.manifests[]? | select(.platform.architecture == "amd64" and .platform.os == "linux") | .digest // empty')
echo "digest=$DIGEST" >> $GITHUB_OUTPUT
echo "manifest_found=true" >> $GITHUB_OUTPUT
echo "Manifest found for MLflow-full image with digest: $DIGEST"
else
echo "manifest_found=false" >> $GITHUB_OUTPUT
echo "MLflow-full image not found"
fi
- name: Check MLflow base image
id: mlflow-base
@@ -38,8 +40,10 @@ jobs:
DIGEST=$(echo "$MANIFEST" | jq -r '.manifests[]? | select(.platform.architecture == "amd64" and .platform.os == "linux") | .digest // empty')
echo "digest=$DIGEST" >> $GITHUB_OUTPUT
echo "manifest_found=true" >> $GITHUB_OUTPUT
echo "Manifest found for MLflow base image with digest: $DIGEST"
else
echo "manifest_found=false" >> $GITHUB_OUTPUT
echo "MLflow base image not found"
fi
- name: Build decision
id: decision