Fastlane Gym: Possible to only archive without export?

Viewed 11

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

1 Answers

There's an xcarchive action for this task.

Looks like skip_package_ipa: true also does the trick.

Related