feat(ios): add --no-sign and --archive-only flags to ios build#15061
Conversation
|
I am going to take note of the following in SideStore: I may want to consider the impact of entitlements in tauri projects, both for things like storage, but also for custom native extensions requiring advanced platform-specific configuration. |
Package Changes Through c61c32dThere are 11 changes which include tauri with minor, @tauri-apps/api with minor, tauri-build with minor, tauri-macos-sign with patch, tauri-bundler with minor, @tauri-apps/cli with minor, tauri-cli with minor, tauri-runtime with minor, tauri-runtime-wry with minor, tauri-utils with minor, tauri-plugin with minor Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
closes #14940
Of note,
cargo testis throwing a failed test, but it seems to be due to a snapshot change outside of my work? clippy is passing fine.This adds two flags:
--no-sign: uses xcodebuild archive to output a .xarchive, then pulls the .app out of that and produces an IPA for use in third-party distribution (AltStore/SideStore)--archive-only: uses xcodebuild archive to output a .xarchive, following your signing configuration. Can be combined with--no-signas wellPlaces I'm unable to check for regression: App Store Connect use should be unaffected, but I'm unable to verify as I don't have an Apple Developer subscription.