From 362ab97601c99330f59545059da8de54c0d9423b Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Tue, 21 Jan 2025 10:16:52 +0000 Subject: [PATCH] fix: update Gradle build command in CI workflows (#11) This commit updates the CI build and release workflows by changing the Gradle build command from `composeApp:buildDebug` to `composeApp:build`. This change affects the `build.yaml` and `release.yaml` files. - the Gradle build command is updated to use `composeApp:build` instead of `composeApp:buildDebug` Reviewed-on: https://git.brmartin.co.uk/bob/mobile-application/pulls/11 Co-authored-by: Ben Martin Co-committed-by: Ben Martin --- .github/workflows/build.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e82b904..f5e8b61 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,4 +25,4 @@ jobs: uses: android-actions/setup-android@v3 - name: Build with Gradle - run: ./gradlew composeApp:buildDebug --no-daemon + run: ./gradlew composeApp:build --no-daemon diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 042d3ad..ffb4a92 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: uses: android-actions/setup-android@v3 - name: Build with Gradle - run: ./gradlew composeApp:buildDebug --no-daemon + run: ./gradlew composeApp:build --no-daemon - name: Gradle Release run: ./gradlew composeApp:debug --no-daemon