-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚀[Release v2.14.0] Merge into Develop #307
base: develop
Are you sure you want to change the base?
Changes from all commits
ad6ac60
dcb363e
1407df0
7e2c42a
893649d
e5611ca
771c9ae
d6ee1f7
7b5a20d
f3a6d9d
91da760
1114865
39d6fdd
247cd06
2ce1e2f
e7c9ad4
f29900c
59540fb
cc1cf62
e2cd5ec
1209365
b70ac96
fb7e1e5
5113776
28ab598
18183ae
8af6e24
0034f00
b457c2f
6a7e8a5
8f40256
6b17e92
79e12d8
5d7e9e6
7a213ca
12bea30
4e7eefb
63a08e1
b2eb9d6
7c1101b
1031350
efc8fd6
bd0ef60
cb93f22
7160a63
6e2753a
6119928
744e247
fffd5f2
225799b
ed1e34e
d8bacf2
34c51e8
8ca741b
daf9a23
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env bash | ||
|
||
function copyEnvironmentVariablesToGradleProperties { | ||
DIR="$(pwd)" | ||
GRADLE_PROPERTIES=${DIR}"/gradle.properties" | ||
export GRADLE_PROPERTIES | ||
echo "Gradle Properties should exist at $GRADLE_PROPERTIES" | ||
|
||
if [[ ! -f "$GRADLE_PROPERTIES" ]]; then | ||
echo "Gradle Properties does not exist" | ||
|
||
echo "Creating Gradle Properties file..." | ||
touch $GRADLE_PROPERTIES | ||
|
||
echo "Writing keys to gradle.properties..." | ||
echo "RELEASE_KEYSTORE_FILE=$RELEASE_KEYSTORE_FILE" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEYSTORE_PASSWORD=$RELEASE_KEYSTORE_PASSWORD" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEY_ALIAS=$RELEASE_KEY_ALIAS" >> ${GRADLE_PROPERTIES} | ||
echo "RELEASE_KEY_PASSWORD=$RELEASE_KEY_PASSWORD" >> ${GRADLE_PROPERTIES} | ||
fi | ||
} | ||
|
||
|
||
|
||
function fetchKeystore { | ||
sudo gpg --passphrase ${RELEASE_KEYSTORE_ENCRYPTION_KEY} --pinentry-mode loopback -o "app/$RELEASE_KEYSTORE_FILE" -d "upload-binary/$RELEASE_KEYSTORE_FILE.gpg" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so we put the google-services.json and the release.keystore here? @kcw-grunt