Skip to main content

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

NameTypeDefaultDescription
--app-id [required]stringAppflow app id
--firstnumber10Return the first n builds
--platformstring"all"Filter builds by platform
--statestring"all"Filter builds by state

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
buildListobject[]List of appflow builds
.buildIdnumberA unique identifier for a build done in Appflow.
.buildNumbernumberAn 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.
.triggeredBystringAppflow user that triggered the build associated with this deployment.
.buildCreatedstringString of datetime when build was created
.commitShastringThe commit hash.
.commitLinkstringLink to commit.
.commitMessagestringThe message that was provided when a commit was made.
.commitAuthorstringThe git user that created the commit associated with this build.
.commitCreatedstringString of datetime when the commit was created
.commitRefstringThe 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"
}
]
}