Skip to content

Instantly share code, notes, and snippets.

@3d24rd0
Created January 12, 2022 09:43
Show Gist options
  • Save 3d24rd0/4b1e8ba0e024c571333e5acba20f3895 to your computer and use it in GitHub Desktop.
Save 3d24rd0/4b1e8ba0e024c571333e5acba20f3895 to your computer and use it in GitHub Desktop.
fastlane submit testflight
lane :submit_testflight do
# Increment the build number using the
# latest Testflight build number.
increment_build_number(
build_number: latest_testflight_build_number() + 1,
xcodeproj: "./"+name+".xcodeproj"
)
# Build the application using the
# specified scheme.
build_app(scheme: name)
# Upload the application to Testflight
upload_to_testflight(
skip_waiting_for_build_processing: true
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment