Created
January 25, 2023 07:03
-
-
Save demirdev/7014306a36d9ad11e6047ce816a24598 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains the fastlane.tools configuration | |
# You can find the documentation at https://docs.fastlane.tools | |
# | |
# For a list of all available actions, check out | |
# | |
# https://docs.fastlane.tools/actions | |
# | |
# For a list of all available plugins, check out | |
# | |
# https://docs.fastlane.tools/plugins/available-plugins | |
# | |
# Uncomment the line if you want fastlane to automatically update itself | |
# update_fastlane | |
default_platform(:ios) | |
platform :ios do | |
desc "Push a new release build to the App Store" | |
lane :release do | |
increment_build_number(xcodeproj: "Runner.xcodeproj") | |
build_app(workspace: "Runner.xcworkspace", scheme: "Runner") | |
upload_to_app_store | |
end | |
lane :upload_only_metadata do | |
deliver( | |
# build_number: '830', | |
submit_for_review: false, | |
automatic_release: true, | |
force: true, # Skip HTMl report verification | |
skip_metadata: false, | |
skip_screenshots: true, | |
skip_binary_upload: true, | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment