export_ipa
Generate IPA files from Xcode archives using specified export methods like app-store, ad-hoc, enterprise, or development. Define archive and export paths for streamlined IPA creation.
Instructions
Export an IPA file from an Xcode archive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archivePath | Yes | Path to the .xcarchive file | |
exportMethod | No | Export method for the IPA | development |
exportPath | No | Directory where the IPA should be exported (optional) |
Input Schema (JSON Schema)
{
"properties": {
"archivePath": {
"description": "Path to the .xcarchive file",
"type": "string"
},
"exportMethod": {
"default": "development",
"description": "Export method for the IPA",
"enum": [
"app-store",
"ad-hoc",
"enterprise",
"development"
],
"type": "string"
},
"exportPath": {
"description": "Directory where the IPA should be exported (optional)",
"type": "string"
}
},
"required": [
"archivePath"
],
"type": "object"
}