fluffychat/scripts/prepare-android-release.sh
Christian Pauly e83130a4df feat: Use Firebase Cloud Messaging over UP
This switches to the FOSS implementation
of the google libraries so we have
no more Blobs there.
2022-07-09 10:49:39 +02:00

13 lines
434 B
Bash
Executable file

#!/usr/bin/env bash
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 ..