fix: update Gradle build command in CI workflows (#11)
All checks were successful
Build / build (push) Successful in 4m41s

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: #11
Co-authored-by: Ben Martin <ben.martin@sky.uk>
Co-committed-by: Ben Martin <ben.martin@sky.uk>
This commit is contained in:
Ben Martin 2025-01-21 10:16:52 +00:00 committed by Ben Martin
parent 27240824f6
commit 362ab97601
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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