Skip to main content

appflow destination list-deployments

[appflow, destination, list-deployments]

Get list of deployments made to this store destination for the specified app

appflow destination list-deployments [flags]

Examples

appflow destination list-deployments --app-id=b3456cd --name=Production

Flags

NameTypeDefaultDescription
--app-id [required]stringAppflow app id
--name [required]stringStore destination name
--firstnumber5Fetches the first n latest deployments to the destination

Global Flags

NameTypeDefaultDescription
-h, --helpbooleanfalsePrint help information for command
--configstringAppflow config file (.appflow.yaml by default)
--jsonbooleanfalseFor commands with output, shortcut to print as JSON
--outputstring"text"For commands with output, print as [json] or human readable [text]
--tokenstringIonic authorization token

Outputs

NameTypeDescription
namestringThe name of a Destination you've created in Appflow.
targetstringThe target (Apple App Store/Google Play) of your Destination in Appflow.
deploymentsobject[]A list of past deployments to this Live Update channel or Destination.
.buildIdnumberA unique identifier for a build done in Appflow.
.buildNumber (optional)numberAn app-specific build number for builds done in Appflow.
.triggeredBystringAppflow user that triggered the build associated with this deployment.
.statusstringThe status of this deployment.
.commitSha (optional)stringThe commit hash.
.commitAuthorstringThe git user that created the commit associated with this build.
.commitCreatedstringString of datetime when the commit was created
.commitBranchstringThe branch on which the commit was created.
{
"name": "Development",
"target": "Apple App Store",
"deployments": [
{
"buildId": 6010455,
"buildNumber": 25,
"triggeredBy": "Michael",
"status": "SUCCESS",
"commitSha": "cef1sdca",
"commitAuthor": "Michael",
"commitCreated": "2023-04-06T18:42:06.503109+00:00",
"commitBranch": "main"
}
]
}