fixed variable reference

This commit is contained in:
Brian Bjarke Jensen
2025-10-04 00:10:45 +02:00
parent 99522eb651
commit e8b858b5a4
+2 -4
View File
@@ -116,12 +116,10 @@ jobs:
- name: Build decision
id: decision
run: |
if [ github.event.inputs.skip_image_check == 'true' ]; then
if [ "${{ github.event.inputs.skip_image_check }}" == "true" ]; then
echo "Image check skipped, forcing build"
echo "should_build=true" >> $GITHUB_OUTPUT
exit 0
fi
if [ "${{ steps.mlflow-base.outputs.success }}" == "true" ] && \
elif [ "${{ steps.mlflow-base.outputs.success }}" == "true" ] && \
[ "${{ steps.mlflow-full.outputs.success }}" == "true" ]; then
echo "✅ Both MLflow base and MLflow-full images found"
if [ "${{ steps.mlflow-base.outputs.digest }}" != "${{ steps.mlflow-full.outputs.base_image_digest }}" ]; then