Cloud builds add a compile pipeline upstream of this lifecycle — sync, compile, cook, package (see build stages). Once you Deploy a cloud build, it enters the states below exactly like a manually uploaded
.zip.State reference
The happy path:pending → Downloading Files → Extracting & Scanning → Saving to Repository → Distribute → Approved. A build can also end in Reject if something fails along the way.
Each state corresponds to a webhook event. The event fires when the build enters the state.
Durations are typical, not guaranteed. Large builds (close to the 24 GB soft limit, or larger if you’ve had it raised), slow source hosts, and busy regions all stretch the pipeline. The 24 GB cap is a soft limit — raise a support ticket if you need it bumped, no extra charges.
When a build sits longer than expected
Two situations are normal even though they look slow:- Stuck in
pending— the processing service is busy with other users’ uploads and yours is in the queue. No action needed; it’ll move on automatically. - Long
Downloading Fileswhen re-activating an older build — older builds are moved into archive storage to save costs, and we have to retrieve them before they can stream. Retrieval takes up to 30 minutes.
Auto-release vs manual release
TheautoRelease flag on the Upload File API decides what happens after Saving to Repository.
- autoRelease: true (default)
- autoRelease: false
The build automatically moves through
Distribute and into Approved. Goes live as soon as it’s validated.Use this when every successful upload should ship.Why a build gets rejected
When a build ends inReject, the build.rejected webhook payload includes an objection field describing the cause.
The full
objection string is whatever the pipeline produced — surface it directly to your team or CI logs.
Tracking a build’s progress
Dashboard
The project’s Builds tab shows every upload’s current state, with timestamps and the rejection reason if any.
Webhooks
HTTP POSTs to your endpoint at every state transition. The recommended path for CI/CD.
Next steps
Webhooks
Wire up events that fire at each state transition.
Upload File API
The endpoint that kicks off the lifecycle.
Distribute File API
Used when
autoRelease: false.Uploading your build
The dashboard path for non-automated workflows.