update workflow script and configuration files

This commit is contained in:
granny
2025-01-13 02:12:39 -08:00
committed by granny
parent ef6f503d0d
commit a415bf72de
7 changed files with 66 additions and 14 deletions

View File

@@ -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 applyPatches --no-daemon --stacktrace
run: ./gradlew applyAllPatches --no-daemon --stacktrace
- name: Build
run: ./gradlew build --no-daemon --stacktrace
- name: Rebuild on Failure
if: ${{ failure() }}
run: |
./gradlew clean cleanCache
./gradlew applyPatches --no-daemon --stacktrace
./gradlew clean cleanCache --refresh-dependencies
./gradlew applyAllPatches --no-daemon --stacktrace
./gradlew build --no-daemon --stacktrace