diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c073a7728..f2c695646 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,12 +21,12 @@ jobs: - name: Configure Git run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions" - name: Apply Patches - run: ./gradlew applyAllPatches --no-daemon --stacktrace + run: ./gradlew applyAllPatches --stacktrace - name: Build - run: ./gradlew build --no-daemon --stacktrace + run: ./gradlew build --stacktrace - name: Rebuild on Failure if: ${{ failure() }} run: | ./gradlew clean cleanCache --refresh-dependencies - ./gradlew applyAllPatches --no-daemon --stacktrace - ./gradlew build --no-daemon --stacktrace + ./gradlew applyAllPatches --stacktrace + ./gradlew build --stacktrace