mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
15 lines
491 B
Bash
Executable File
15 lines
491 B
Bash
Executable File
#!/usr/bin/env bash
|
|
git apply ./scripts/enable-android-google-services.patch
|
|
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
|
|
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
|
|
ls | grep key
|
|
bundle install
|
|
bundle update fastlane
|
|
bundle exec fastlane set_build_code_internal
|
|
cd ..
|