appflow build list-builds
[appflow, build, list-builds]
List builds for the specified app
appflow build list-builds [flags]
Examples
appflow build list-builds --app-id=b3456cd
Flags
Name | Type | Default | Description |
---|---|---|---|
--app-id [required] | string | Appflow app id | |
--first | number | 10 | Return the first n builds |
--platform | string | "all" | Filter builds by platform |
--state | string | "all" | Filter builds by state |
Global Flags
Name | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false | Print help information for command |
--config | string | Appflow config file (.appflow.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 |
---|---|---|
buildList | object[] | List of appflow builds |
.buildId | number | A unique identifier for a build done in Appflow. |
.buildNumber | 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. |
.triggeredBy | string | Appflow user that triggered the build associated with this deployment. |
.buildCreated | string | String of datetime when build was created |
.commitSha | string | The commit hash. |
.commitLink | string | Link to commit. |
.commitMessage | string | The message that was provided when a commit was made. |
.commitAuthor | string | The git user that created the commit associated with this build. |
.commitCreated | string | String of datetime when the commit was created |
.commitRef | string | The branch a commit was made on. |
{
"buildList": [
{
"buildId": 6010455,
"buildNumber": 25,
"buildStatus": "SUCCESS",
"platform": "WEB",
"triggeredBy": "Michael",
"buildCreated": "2023-04-06T18:42:06.503109+00:00",
"commitSha": "cef1sdca",
"commitLink": "\u003cLink to commit\u003e",
"commitMessage": "feat: enable customer delight",
"commitAuthor": "Michael",
"commitCreated": "2023-04-06T18:42:06.503109+00:00",
"commitRef": "main"
}
]
}