xcode_archive_project
Archive iOS/macOS projects for distribution by specifying the project path, scheme, and output archive path using programmatic Xcode functionality.
Instructions
Create an archive for distribution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archive_path | Yes | Output path for .xcarchive | |
project_path | Yes | Path to .xcodeproj file | |
scheme | Yes | Scheme to archive |
Input Schema (JSON Schema)
{
"properties": {
"archive_path": {
"description": "Output path for .xcarchive",
"type": "string"
},
"project_path": {
"description": "Path to .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "Scheme to archive",
"type": "string"
}
},
"required": [
"project_path",
"scheme",
"archive_path"
],
"type": "object"
}