From 35e1ab3e07ca33b9757059877279ea810f88c741 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 21 Oct 2020 19:15:58 +0200 Subject: [PATCH] ios fastfile: Do not increment the build number This is taken care of by flutter --- ios/fastlane/Fastfile | 7 +++++-- scripts/build_ios.sh | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) 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