feat: add --no-daemon flag to Gradle build commands in CI workflows
All checks were successful
Build / build (pull_request) Successful in 3m56s

This commit updates the CI build and release workflows by adding the `--no-daemon` flag to the Gradle build commands. This change affects the `build.yaml` and `release.yaml` files.
- The `--no-daemon` flag is now included when running `./gradlew composeApp:buildDebug` and `./gradlew composeApp:debug`.
This commit is contained in:
Ben Martin 2025-01-21 00:46:43 +00:00
parent b161684cae
commit ab14b90143
Signed by: ben
GPG key ID: 859A655FCD290E4A
2 changed files with 3 additions and 3 deletions

View file

@ -24,4 +24,4 @@ jobs:
uses: android-actions/setup-android@v3
- name: Build with Gradle
run: ./gradlew composeApp:buildDebug
run: ./gradlew composeApp:buildDebug --no-daemon

View file

@ -23,10 +23,10 @@ jobs:
uses: android-actions/setup-android@v3
- name: Build with Gradle
run: ./gradlew composeApp:buildDebug
run: ./gradlew composeApp:buildDebug --no-daemon
- name: Gradle Release
run: ./gradlew composeApp:debug
run: ./gradlew composeApp:debug --no-daemon
- name: Upload artifacts
uses: actions/upload-artifact@v4