list-releases
Stallion CLI list-releases command - List the production releases for an app version with rollout percentage and live/paused/rolled-back status.
Lists the production releases for a given app version — bundle version, who released it, rollout percentage, live/paused/rolled-back status, release note, and the release id you pass to release-info.
stallion list-releases
Alias:
stallion lr
Anything you don't pass is prompted interactively: platform, then a picker of app versions (with release counts) for your project.
releases · v1.0.1
Version Released by Rollout Status Release note Release ID
v12 jane@acme.com ████████░░ 80% ✔ live fix crash 6650a2c1b7f93548e4d21a77
v11 jane@acme.com ██████████ 100% ✖ rolled back bad build 6650a2c1b7f93548e4d21a12
2 releases · v1.0.1
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)
Platform to list releases for: android or ios. Prompts if omitted. Required when --app-version is provided.
--platform=android
4. --app-version (Optional)
The app version whose releases you want. Prompts with a version picker if omitted. Required when using --ci-token.
--app-version=1.0.1
5. --limit (Optional, default: 15, max: 30)
Maximum number of releases to show, most recent first.
6. --ci-token (Optional: for CI pipelines)
Runs the command non-interactively using a CI token. Requires --project-id, --platform, and --app-version.
stallion list-releases \
--ci-token=<your_ci_token> \
--project-id=<your_project_id> \
--platform=android \
--app-version=1.0.1
7. --json (Optional)
Prints the raw release list as JSON instead of the table. See CI Automation & JSON Output.
stallion list-releases --json --platform=android --app-version=1.0.1