mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-27 17:29:50 +08:00
ios fastfile: Do not increment the build number
This is taken care of by flutter
This commit is contained in:
@ -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
|
||||||
|
@ -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
|
||||||
|
Reference in New Issue
Block a user