xcode-archive
Automate Xcode project archiving by specifying project path, scheme, and archive path. Export IPA files with defined export options for streamlined iOS app deployment and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archivePath | Yes | 아카이브 파일(.xcarchive) 저장 경로 | |
configuration | No | 빌드 구성 (예: Release) | |
exportOptionsPlist | No | 익스포트 옵션 plist 파일 경로 | |
exportPath | No | 익스포트 경로 (IPA 파일 등) | |
projectPath | Yes | Xcode 프로젝트 또는 워크스페이스 경로 | |
scheme | Yes | 아카이브할 스킴 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"archivePath": {
"description": "아카이브 파일(.xcarchive) 저장 경로",
"type": "string"
},
"configuration": {
"description": "빌드 구성 (예: Release)",
"type": "string"
},
"exportOptionsPlist": {
"description": "익스포트 옵션 plist 파일 경로",
"type": "string"
},
"exportPath": {
"description": "익스포트 경로 (IPA 파일 등)",
"type": "string"
},
"projectPath": {
"description": "Xcode 프로젝트 또는 워크스페이스 경로",
"type": "string"
},
"scheme": {
"description": "아카이브할 스킴",
"type": "string"
}
},
"required": [
"projectPath",
"scheme",
"archivePath"
],
"type": "object"
}