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
17 changes: 17 additions & 0 deletions .github/workflows/homebrew-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Bump Homebrew formula
on:
push:
tags: ["v*"]

jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Bump capctl in the tap
uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
tap: SimonTarara62/homebrew-tap
formula: capctl
tag: ${{ github.ref_name }}
force: false
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ Using [uv](https://docs.astral.sh/uv/) instead of pipx:
uv tool install capitalcom-cli
```

With [Homebrew](https://brew.sh/) (macOS/Linux):

```bash
brew install SimonTarara62/tap/capctl
```

Plain pip (into the active environment):

```bash
Expand Down
4 changes: 4 additions & 0 deletions docs/awesome-submission.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ entry text to submit. Keep this in sync when a submission lands.
- **Status:** eligible; lower priority. Follow that repo's CSV row format if pursued.

## Unofficial positioning (done in this change set)

Distribution channels (PyPI, Homebrew tap, Terminal Trove) are tracked in
[distribution.md](distribution.md).

"Unofficial" is now explicit in: the README title + tagline, the existing risk
disclaimer, the `NOTICE` file, the `pyproject.toml` description (→ PyPI summary),
the GitHub repo "About", and the `capctl --help` text.
Expand Down
Loading