fix: update Gradle build command in CI workflows
All checks were successful
Build / build (pull_request) Successful in 5m43s
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:
parent
27240824f6
commit
79766dc16f
2 changed files with 2 additions and 2 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue