Skip to content

Commit

Permalink
CI: Fix debug build due to missing release keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
Julow committed Jan 9, 2024
1 parent 329a35e commit ac5f7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
}

release {
storeFile file(System.env.RELEASE_KEYSTORE)
storeFile(System.env.RELEASE_KEYSTORE ? file(System.env.RELEASE_KEYSTORE) : "")
storePassword "$System.env.RELEASE_KEYSTORE_PASSWORD"
keyAlias "$System.env.RELEASE_KEY_ALIAS"
keyPassword "$System.env.RELEASE_KEY_PASSWORD"
Expand Down

0 comments on commit ac5f7d2

Please sign in to comment.