Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
# ── 4. Push updated formula to the Homebrew tap ─────────────────────────────
#
# Prerequisites (one-time setup):
# 1. Create repo tellers-ai/homebrew (or rename to homebrew-tellers for `brew tap tellers-ai/tellers`)
# 1. Create repo tellers-ai/homebrew-tellers (`brew tap tellers-ai/tellers`)
# 2. Add Formula/tellers.rb (use .github/homebrew/tellers.rb as the seed)
# 3. Create a GitHub PAT (classic) with the "repo" scope
# 4. Add it as secret HOMEBREW_TAP_TOKEN in this repo's settings
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
env:
TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
run: |
git clone "https://x-access-token:${TAP_TOKEN}@github.com/tellers-ai/homebrew.git" tap
git clone "https://x-access-token:${TAP_TOKEN}@github.com/tellers-ai/homebrew-tellers.git" tap
mkdir -p tap/Formula
cp tellers.rb tap/Formula/tellers.rb
cd tap
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@

Tellers CLI to interact with `tellers.ai` from the terminal.

## Quickstart
## Installation

Build the CLI:
### Homebrew (macOS and Linux)

```bash
brew tap tellers-ai/tellers
brew install tellers
```

### Build from source

```bash
# Generate the client crate
Expand Down
Loading