Quick Start
The typical workflow from authentication to your first mobile build upload and app management.
Get up and running with the BuildShare CLI in three simple steps.
Step 1 — Authenticate
Run the login command to authenticate your machine. In interactive terminals, it prompts for your BuildShare email and password:
buildshare loginAlternatively, supply an API token inline or via the BUILDSHARE_TOKEN environment variable:
BUILDSHARE_TOKEN=<your-token> buildshare loginStep 2 — Upload a Build
Upload your compiled Android APK or iOS IPA directly. BuildShare shows real-time progress and generates a public OTA install link immediately:
buildshare upload ./app-release.apkYou can target a specific app ID and provide release notes directly:
buildshare upload ./app.ipa --app my-app-id --notes "Release 2.4.0 preview"Once uploaded, the CLI prints the shareable OTA installation URL and terminal QR code.
Step 3 — View Apps
List all applications registered in your active workspace along with their package names and platform identifiers:
buildshare app listTo list recent builds uploaded for a specific application:
buildshare build list --app <app-id>Next Steps
Explore the full command references and CI/CD automation guides: