Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Simplify signingConfigs: Unified keystore for production and staging
  • Loading branch information
DesarrolloAntonio committed Nov 26, 2024
2 parents a8d528e + 7042b21 commit 8559a4e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ presentation/release
local.properties
keystore.properties
resources
cambios.patch
presentation/staging
16 changes: 8 additions & 8 deletions presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ android {

signingConfigs {
create("production") {
keyAlias = System.getenv("PRODUCTION_KEY_ALIAS")
keyPassword = System.getenv("PRODUCTION_KEY_PASSWORD")
storeFile = file("${System.getenv("GITHUB_WORKSPACE")}/production_key_store.jks")
storePassword = System.getenv("PRODUCTION_STORE_PASSWORD")
keyAlias = System.getenv("RELEASE_KEY_ALIAS")
keyPassword = System.getenv("RELEASE_KEY_PASSWORD")
storeFile = file("${System.getenv("GITHUB_WORKSPACE")}/key_store.jks")
storePassword = System.getenv("RELEASE_STORE_PASSWORD")
}
create("staging") {
keyAlias = System.getenv("STAGING_KEY_ALIAS")
keyPassword = System.getenv("STAGING_KEY_PASSWORD")
storeFile = file("${System.getenv("GITHUB_WORKSPACE")}/staging_key_store.jks")
storePassword = System.getenv("STAGING_STORE_PASSWORD")
keyAlias = System.getenv("RELEASE_KEY_ALIAS")
keyPassword = System.getenv("RELEASE_KEY_PASSWORD")
storeFile = file("${System.getenv("GITHUB_WORKSPACE")}/key_store.jks")
storePassword = System.getenv("RELEASE_STORE_PASSWORD")
}
}

Expand Down

0 comments on commit 8559a4e

Please sign in to comment.