ios fastfile: Do not increment the build number

This is taken care of by flutter
This commit is contained in:
Vishesh Handa
2020-10-21 19:15:58 +02:00
parent d0547c77ed
commit 35e1ab3e07
2 changed files with 5 additions and 3 deletions

View File

@ -3,8 +3,11 @@ default_platform(:ios)
platform :ios do platform :ios do
desc "Push a new release build to the App Store" desc "Push a new release build to the App Store"
lane :release do lane :release do
increment_build_number(build_number: number_of_commits) build_app(
build_app(workspace: "Runner.xcworkspace", scheme: "Runner") scheme: "Runner",
workspace: "Runner.xcworkspace",
export_method: "app-store"
)
#upload_to_app_store(skip_metadata: true, skip_screenshots: true) #upload_to_app_store(skip_metadata: true, skip_screenshots: true)
upload_to_testflight(apple_id:"1466519634", skip_waiting_for_build_processing:true) upload_to_testflight(apple_id:"1466519634", skip_waiting_for_build_processing:true)
end end

View File

@ -37,7 +37,6 @@ if [ ! -L "gj_common" ]; then
ln -s git_bindings/gj_common gj_common ln -s git_bindings/gj_common gj_common
fi fi
flutter build ios --release --no-codesign
#cd ios #cd ios
#fastlane release #fastlane release