Skip to content
Open
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
20 changes: 20 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,23 @@ changelog:
- "^chore:"
- "^ci:"
- "^test:"

brews:
- name: bumblebee
repository:
owner: perplexityai
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Formula
homepage: "https://github.com/perplexityai/bumblebee"
description: "Read-only developer endpoint scanner for supply-chain exposure"
license: "Apache-2.0"
install: |
bin.install "bumblebee"
pkgshare.install "threat_intel"
test: |
assert_match version.to_s, shell_output("#{bin}/bumblebee version")
assert_match "selftest OK", shell_output("#{bin}/bumblebee selftest")
commit_author:
name: github-actions[bot]
email: 41898282+github-actions[bot]@users.noreply.github.com
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,22 @@ Per-ecosystem detail: [docs/inventory-sources.md](docs/inventory-sources.md).

## Install

### Homebrew

```sh
brew install bumblebee
```

A formula is in review for [Homebrew core](https://github.com/Homebrew/homebrew-core/pull/284878). Until it merges, install from [GitHub releases](https://github.com/perplexityai/bumblebee/releases) or build from source below.

Verify any install with:

```sh
bumblebee selftest
```

### Go install

Requires Go 1.25+. Zero non-stdlib dependencies.

```sh
Expand Down