ionic-cloud deploy ios
[ionic-cloud, deploy, ios]
This command deploys an iOS build to Testflight or iTunes Connect. While the deploy is running, it prints the remote log to the terminal.
ionic-cloud deploy ios [flags]
Examples
ionic-cloud deploy ios --app-id=b3456cd --build-id=4c511f1 --destination="Apple App Store"
Flags
Name | Type | Default | Description |
---|---|---|---|
--app-id [required] | string | Appflow app id | |
--build-id [required] | number | Appflow build id | |
--destination [required] | string | Apple app store destination name | |
--detached | boolean | false | Asynchronously run appflow deployment |
Global Flags
Name | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false | Print help information for command |
--config | string | Ionic Cloud config file (.ionic-cloud.yaml by default) | |
--json | boolean | false | For commands with output, shortcut to print as JSON |
--output | string | "text" | For commands with output, print as [json] or human readable [text] |
--token | string | Ionic authorization token |
Outputs
Name | Type | Description |
---|---|---|
appId | string | Your app's unique identifier in Appflow. |
buildId (optional) | number | A unique identifier for a build done in Appflow. |
buildNumber (optional) | number | An app-specific build number for builds done in Appflow. |
buildStatus | "CREATED" | "PENDING" | "RUNNING" | "BUILDING" | "FAILED" | "SUCCESS" | "CANCELED" | The current state of your build in Appflow. |
platform | "ANDROID" | "IOS" | "WEB" | The ecosystem you are building for. |
destinationName | string | The name of a Destination you've created in Appflow. |
Successful Output
{
"appId": "052b32ac",
"buildId": 6010455,
"buildNumber": 25,
"buildStatus": "SUCCESS",
"platform": "IOS",
"destinationName": "App Store"
}