Skip to content

Commit dbf08ff

Browse files
Update assembleProdDebug instead of assembleDebug
This commit updates the Gradle build commands in the CI workflows. The `android-branch_ci.yml`, `android-pr_ci.yml`, and `android-main_ci.yml` files have been modified to execute the `./gradlew assembleProdDebug` task instead of `./gradlew assembleDebug`. This ensures that the "prod" flavor is used for debug builds across all CI pipelines.
1 parent 46a2773 commit dbf08ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/android-branch_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: chmod +x gradlew
4141

4242
- name: Build with Gradle
43-
run: ./gradlew clean && ./gradlew assembleDebug
43+
run: ./gradlew clean && ./gradlew assembleProdDebug
4444

4545
- name: Upload Artifact
4646
uses: actions/[email protected]

.github/workflows/android-main_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
run: chmod +x gradlew
3939

4040
- name: Build with Gradle
41-
run: ./gradlew clean && ./gradlew assembleDebug
41+
run: ./gradlew clean && ./gradlew assembleProdDebug

.github/workflows/android-pr_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: chmod +x gradlew
3939

4040
- name: Build with Gradle
41-
run: ./gradlew clean && ./gradlew assembleDebug
41+
run: ./gradlew clean && ./gradlew assembleProdDebug
4242

4343
- name: Upload Artifact
4444
uses: actions/[email protected]

0 commit comments

Comments
 (0)