fixed variable reference
This commit is contained in:
@@ -116,12 +116,10 @@ jobs:
|
|||||||
- name: Build decision
|
- name: Build decision
|
||||||
id: decision
|
id: decision
|
||||||
run: |
|
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 "Image check skipped, forcing build"
|
||||||
echo "should_build=true" >> $GITHUB_OUTPUT
|
echo "should_build=true" >> $GITHUB_OUTPUT
|
||||||
exit 0
|
elif [ "${{ steps.mlflow-base.outputs.success }}" == "true" ] && \
|
||||||
fi
|
|
||||||
if [ "${{ steps.mlflow-base.outputs.success }}" == "true" ] && \
|
|
||||||
[ "${{ steps.mlflow-full.outputs.success }}" == "true" ]; then
|
[ "${{ steps.mlflow-full.outputs.success }}" == "true" ]; then
|
||||||
echo "✅ Both MLflow base and MLflow-full images found"
|
echo "✅ Both MLflow base and MLflow-full images found"
|
||||||
if [ "${{ steps.mlflow-base.outputs.digest }}" != "${{ steps.mlflow-full.outputs.base_image_digest }}" ]; then
|
if [ "${{ steps.mlflow-base.outputs.digest }}" != "${{ steps.mlflow-full.outputs.base_image_digest }}" ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user