diff --git a/.github/workflows/build_app.yml b/.github/workflows/build_app.yml index d67cb13..ba90bd7 100644 --- a/.github/workflows/build_app.yml +++ b/.github/workflows/build_app.yml @@ -66,7 +66,6 @@ jobs: - name: Build and publish GitHub release run: | cd /tmp/build/android - $FLUTTER_ROOT/flutter build appbundle --release - $FLUTTER_ROOT/flutter build apk --split-per-abi --release + bundle exec fastlane build env: GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index 2c15478..e16e23d 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -33,12 +33,12 @@ platform :android do |options| json_key_data: ENV['PLAY_STORE_CREDENTIALS'], ) end - + desc "Build the app" lane :build do |options| sh "$FLUTTER_ROOT/flutter build appbundle -v" end - + desc "Promote track" lane :play_store_promote do |options| track = options[:track]