CLI for Shipable
Ship is the command-line interface for Shipable, providing authentication, app management, and publishing workflows from the terminal.
# macOS (Apple Silicon)
curl -L -o ship \
https://github.com/kula-app/ship/releases/latest/download/ship-darwin-arm64
chmod +x ship
sudo mv ship /usr/local/bin/make build
# Binary will be at ./dist/ship# Authenticate with Shipable
ship auth login
# List your apps
ship apps list
# Publish an app
ship publish --app-id <uuid>| Command | Description |
|---|---|
ship auth login |
Authenticate via browser |
ship auth logout |
Remove stored credentials |
| Command | Description |
|---|---|
ship apps list |
List all apps |
| Command | Description |
|---|---|
ship publish --app-id <id> |
Full publish |
ship publish metadata --app-id <id> |
Publish metadata only |
ship publish screenshots --app-id <id> |
Publish screenshots only |
ship publish app --app-id <id> |
Publish app binary only |
ship publish status --app-id <id> |
Show publish job status |
ship publish validate --app-id <id> |
Pre-publish validation |
All publish commands accept --platform ios,android to target specific platforms.
Use --log-format json on any command for machine-readable JSON output.
- Go 1.26 or later
- Make
# Install dependencies
make init
# Set up environment
cp .env.example .env
# Build and run
make build
./dist/ship --helpRun make help for the full list. Key commands:
| Command | Description |
|---|---|
make build |
Build CLI binary |
make run |
Build and run CLI |
make test |
Run tests |
make analyze |
Static analysis and security checks |
make format |
Format code |
make generate |
Generate ent ORM code |
This project's structure and tooling is heavily inspired by sentry-cli ❤️