I'm using the following fastfile:
platform :ios do
desc "Build a new xcarchive for the app store"
lane :release do
build_app(workspace: "App.xcworkspace",
scheme: "App-iOS",
skip_codesigning: true)
end
I'd like to only build the archive without exporting. Is this possible with fastlane gym? What parameter should I use?
Currently the archive succeeds, but since it's missing export/codesigning info, it fails to export it.
Thanks