2020-12-09 20:09:01 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-09-24 12:19:02 +02:00
|
|
|
git apply ./scripts/enable-android-google-services.patch
|
2020-11-22 10:04:47 +00:00
|
|
|
cd android
|
|
|
|
echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks
|
|
|
|
echo "storePassword=${FDROID_KEY_PASS}" >> key.properties
|
|
|
|
echo "keyPassword=${FDROID_KEY_PASS}" >> key.properties
|
|
|
|
echo "keyAlias=key" >> key.properties
|
|
|
|
echo "storeFile=../key.jks" >> key.properties
|
2020-12-09 06:50:23 +00:00
|
|
|
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
|
2020-12-09 06:18:34 +00:00
|
|
|
ls | grep key
|
2020-11-22 10:04:47 +00:00
|
|
|
bundle install
|
|
|
|
bundle update fastlane
|
|
|
|
bundle exec fastlane set_build_code_internal
|
2020-12-09 06:28:23 +00:00
|
|
|
cd ..
|