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

Disable Homebrew releases #3

Merged
merged 4 commits into from
Feb 20, 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
24 changes: 13 additions & 11 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,16 @@ changelog:
- '^docs:'
- '^test:'

brews:
- repository:
owner: zalando
name: rds-health
folder: Formula
goarm: "7"
homepage: https://github.com/zalando/rds-health
description: rds-health discovers anomalies, performance issues and optimization within AWS RDS.
license: MIT
test: |
system "#{bin}/rds-health --version"
# Note: temporary disabled brew releases
#
# brews:
# - repository:
# owner: zalando
# name: rds-health
# folder: Formula
# goarm: "7"
# homepage: https://github.com/zalando/rds-health
# description: rds-health discovers anomalies, performance issues and optimization within AWS RDS.
# license: MIT
# test: |
# system "#{bin}/rds-health --version"
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,18 @@ Let's get your start with `rds-health`. These few simple steps explain how to ru

### Install

Easiest way to install the latest version of utility using binary release, which are available
either from [Homebrew](https://brew.sh/) taps or [GitHub](https://github.com/zalando/rds-health/releases) for multiple platforms.
Easiest way to install the latest version of utility using binary releases, which are available
from [GitHub](https://github.com/zalando/rds-health/releases) for multiple platforms.

<!--
```bash
## Install using brew
brew tap zalando/rds-health https://github.com/zalando/rds-health
brew install -q rds-health

## use `brew upgrade` to upgrade to latest version
```
-->

Alternatively, you can install application from source code but it requires [Golang](https://go.dev/) to be installed.

Expand Down
Loading