mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-08 11:36:11 +01:00
Use temporary keystore for travis builds
This commit is contained in:
parent
80794485c0
commit
8d87c4ab28
2 changed files with 8 additions and 1 deletions
|
|
@ -19,12 +19,19 @@ android {
|
|||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
release {
|
||||
if (System.getenv("TRAVIS")) {
|
||||
storeFile rootProject.file('travis.keystore')
|
||||
storePassword 'abcdef'
|
||||
keyAlias 'travis'
|
||||
keyPassword 'abcdef'
|
||||
} else {
|
||||
storeFile new File(TERMUX_KEYSTORE_FILE)
|
||||
storePassword TERMUX_KEYSTORE_PASSWORD
|
||||
keyAlias TERMUX_KEYSTORE_ALIAS
|
||||
keyPassword TERMUX_KEYSTORE_PASSWORD
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
|
|
|||
BIN
travis.keystore
Normal file
BIN
travis.keystore
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue