diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bef520869..f29868a237 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,11 @@ jobs: - name: Print Version run: mvn -v - name: Build - run: mvn -U -B -fae -DskipTests -Dfindbugs clean install + run: | + mvn -U -B -fae -DskipTests -Dfindbugs clean install | tee outfile.txt + echo "Checking for build errors" + grep ERROR outfile.txt + ! $(grep -q ERROR outfile.txt ) - name: Tar Maven Repo shell: bash run: tar -czf maven-repo.tgz -C ~ .m2/repository