chore: Implement playstore CD

This commit is contained in:
Christian Pauly 2020-11-22 10:04:47 +00:00
commit a5c7e4baaf
21 changed files with 190 additions and 29 deletions

View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
flutter channel stable
flutter upgrade
flutter pub get
flutter build appbundle --target-platform android-arm,android-arm64,android-x64
mkdir -p build/android
cp build/app/outputs/bundle/release/app-release.aab build/android/
cd android
bundle exec fastlane deploy_internal_test
cd ..