fastfile app password support

This commit is contained in:
Violet Caulfield
2025-02-03 22:50:20 -06:00
parent 5c45669454
commit c511d54fe1

View File

@@ -28,7 +28,14 @@ platform :ios do
build_number: ENV['BUILD_NUMBER'],
xcodeproj: "Jellify.xcodeproj"
)
build_app(workspace: "Jellify.xcworkspace", scheme: "Jellify")
upload_to_testflight
build_app(
scheme: "Jellify",
workspace: "Jellify.xcworkspace",
include_bitcode: true
)
# http://docs.fastlane.tools/actions/upload_to_testflight/#upload_to_testflight
upload_to_testflight(
skip_waiting_for_build_processing: true # Required for App password support
)
end
end