fluffychat/scripts/release-playstore.sh
2020-12-08 14:46:47 +00:00

7 lines
145 B
Bash
Executable file

#!/bin/sh -ve
cd android
bundle install
bundle update fastlane
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
bundle exec fastlane deploy_release
cd ..