diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 29312d1..c1195ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -68,7 +68,6 @@ jobs: shell: bash run: | git config --global --add safe.directory /__w/chia-operator/chia-operator - git diff diff=$(git diff-index HEAD --) dirs=(api config hack internal) for dir in "${dirs[@]}"; do @@ -77,6 +76,7 @@ jobs: else echo "Uncommitted changes found .${dir}/ -- This may indicate that you made changes to the controller API but did not run \"make manifests\" before committing. Please see DEVELOPMENT.md" echo "${diff}" + git diff exit 1 fi done