fluffychat/scripts/release-playstore.sh

8 lines
145 B
Bash
Raw Normal View History

2020-12-08 14:46:47 +00:00
#!/bin/sh -ve
2020-11-22 10:04:47 +00:00
cd android
bundle install
bundle update fastlane
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
bundle exec fastlane deploy_release
2020-12-08 14:46:47 +00:00
cd ..