diff --git a/.gitea/workflows/update.yml b/.gitea/workflows/update.yml index 29a7117..d61fe3b 100644 --- a/.gitea/workflows/update.yml +++ b/.gitea/workflows/update.yml @@ -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