diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 36210190..54563307 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -3,8 +3,11 @@ default_platform(:ios) platform :ios do desc "Push a new release build to the App Store" lane :release do - increment_build_number(build_number: number_of_commits) - build_app(workspace: "Runner.xcworkspace", scheme: "Runner") + build_app( + scheme: "Runner", + workspace: "Runner.xcworkspace", + export_method: "app-store" + ) #upload_to_app_store(skip_metadata: true, skip_screenshots: true) upload_to_testflight(apple_id:"1466519634", skip_waiting_for_build_processing:true) end diff --git a/scripts/build_ios.sh b/scripts/build_ios.sh index 36a59471..da82a9a0 100755 --- a/scripts/build_ios.sh +++ b/scripts/build_ios.sh @@ -37,7 +37,6 @@ if [ ! -L "gj_common" ]; then ln -s git_bindings/gj_common gj_common fi -flutter build ios --release --no-codesign #cd ios #fastlane release