release-info
Stallion CLI release-info command - Inspect a single production release in depth: rollout, total users, health status, and adoption metrics.
Shows the full detail of a single production release — bundle version and hash, rollout progress, health status, release note, and adoption metrics (downloads, installs, rollbacks, users).
stallion release-info
Alias:
stallion ri
Anything you don't pass is prompted interactively: platform, app version, then the release itself.
✔ build v12 · 6c8a45dcf5a3
✔ platform android
● rollout ████████░░ 80%
● total users 12,431
release note
fix crash on cold start
bundle hash
6c8a45dcf5a3e983e389afada81449b2b326b2540758a55ca2227902a55f7e2a
✔ healthy · no rollback configured
Adoption Metrics
DOWNLOADS INSTALLS ROLLBACKS USERS
11,204 10,988 14 12,431
A rolled-back release shows rolled back · review required, and a paused one shows paused · rollout halted.
Parameters
1. --org-id (Optional)
Organization id. Falls back to the saved context; prompts if neither is available.
2. --project-id (Optional)
Project id. Falls back to the saved context; prompts if neither is available. Required when using --ci-token.
3. --platform (Optional)
android or ios. Prompts if omitted. Required when --app-version is provided.
4. --app-version (Optional)
The app version the release belongs to. Prompts with a picker if omitted. Required when --promoted-id is provided.
5. --promoted-id (Optional)
The release id, as shown in the Release ID column of list-releases. Prompts with a release picker if omitted. Requires --platform and --app-version when passed.
--promoted-id=6650a2c1b7f93548e4d21a77
6. --ci-token (Optional: for CI pipelines)
Runs the command non-interactively using a CI token. Requires --project-id, --platform, --app-version, and --promoted-id.
stallion release-info \
--ci-token=<your_ci_token> \
--project-id=<your_project_id> \
--platform=android \
--app-version=1.0.1 \
--promoted-id=6650a2c1b7f93548e4d21a77
7. --json (Optional)
Prints the full release detail as JSON — including event counts — instead of the formatted view. See CI Automation & JSON Output.
stallion release-info --json ... | jq '.rolloutPercent'