Skip to content

Instantly share code, notes, and snippets.

@demirdev
Created January 25, 2023 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save demirdev/7014306a36d9ad11e6047ce816a24598 to your computer and use it in GitHub Desktop.
Save demirdev/7014306a36d9ad11e6047ce816a24598 to your computer and use it in GitHub Desktop.
# 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