Skip to content

Commit

Permalink
restore env vars name
Browse files Browse the repository at this point in the history
  • Loading branch information
Undermaken committed Apr 19, 2021
1 parent c960439 commit 1ce6551
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ android {
}
signingConfigs {
release {
if (System.getenv('IO_APP_RELEASE_STORE_FILE')) {
storeFile file(System.getenv('IO_APP_RELEASE_STORE_FILE'))
storePassword System.getenv('IO_APP_RELEASE_STORE_PASSWORD')
keyAlias System.getenv('IO_APP_RELEASE_KEY_ALIAS')
keyPassword System.getenv('IO_APP_RELEASE_KEY_PASSWORD')
if (System.getenv('ITALIAAPP_RELEASE_STORE_FILE')) {
storeFile file(System.getenv('ITALIAAPP_RELEASE_STORE_FILE'))
storePassword System.getenv('ITALIAAPP_RELEASE_STORE_PASSWORD')
keyAlias System.getenv('ITALIAAPP_RELEASE_KEY_ALIAS')
keyPassword System.getenv('ITALIAAPP_RELEASE_KEY_PASSWORD')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/keystore-setup.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

echo $ENCODED_IO_APP_RELEASE_KEYSTORE | base64 --decode > /tmp/ioapp-release.keystore
echo $ENCODED_ITALIAAPP_RELEASE_KEYSTORE | base64 --decode > /tmp/italiaapp-release.keystore

0 comments on commit 1ce6551

Please sign in to comment.