Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
naicfeng committed Jan 20, 2021
1 parent 23f5657 commit 15a85ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ android {
}
}
signingConfigs {
named("release") {
maybeCreate("release").apply {
storeFile = rootProject.file(Objects.requireNonNull(properties.getProperty("storeFile")))
storePassword = System.getenv("KEYSTORE_PWD")
keyAlias = Objects.requireNonNull(properties.getProperty("keyAlias"))
keyPassword = System.getenv("KEY_PWD")
}
}
buildTypes {
named("release") {
maybeCreate("release").apply {
this.signingConfig = signingConfigs.findByName("release")
}
}
Expand Down

0 comments on commit 15a85ed

Please sign in to comment.