From ab14b90143b71a8294d1289f920cf34ef2e0ac8a Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Tue, 21 Jan 2025 00:46:43 +0000 Subject: [PATCH] feat: add `--no-daemon` flag to Gradle build commands in CI workflows 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`. --- .github/workflows/build.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8bc89e2..392b869 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 88ce265..f0eb943 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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