fix: update Gradle build command in CI workflows
All checks were successful
Build / build (pull_request) Successful in 5m43s

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`
This commit is contained in:
Ben Martin 2025-01-21 10:07:38 +00:00
parent 27240824f6
commit 79766dc16f
No known key found for this signature in database
GPG key ID: 11936493893207E4
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