Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflow to release to homebrew tap #70

Merged
merged 2 commits into from
Jun 18, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,9 @@ changelog:
exclude:
- "^docs:"
- "^test:"

brews:
- repository:
owner: ymtdzzz
name: homebrew-tap
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ Logs
![Logs](./docs/logs.png)

## Getting Started
### Homebrew

Download the binary from Github release page and execute it.
```sh
$ brew install ymtdzzz/tap/otel-tui
```

### Executable Binary from Github Release page

https://github.com/ymtdzzz/otel-tui/releases

Or, you can run it using the `go run` command:
### From Source

```sh
$ git clone https://github.com/ymtdzzz/otel-tui.git
Expand Down
Loading