fix: update Gradle build command in CI workflows (#11)
All checks were successful
Build / build (push) Successful in 4m41s
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:
parent
27240824f6
commit
362ab97601
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