Skip to content

Commit

Permalink
ci: Fix pr wrokflow
Browse files Browse the repository at this point in the history
Signed-off-by: Hu Shenghao <[email protected]>
  • Loading branch information
hushenghao committed Oct 15, 2024
1 parent 2787e3d commit baa9c85
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew clean app:assembleDebug
./gradlew clean app:assembleFossAlphaDebug
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ android {
flavorDimensions += listOf("app", "track")

productFlavors {
create("foss") {
dimension = "app"
}
create("market") {
dimension = "app"
}

create("alpha") {
dimension = "track"
versionNameSuffix = "-alpha"
Expand All @@ -74,13 +81,6 @@ android {
create("product") {
dimension = "track"
}

create("foss") {
dimension = "app"
}
create("market") {
dimension = "app"
}
}

androidComponents {
Expand Down

0 comments on commit baa9c85

Please sign in to comment.