Skip to content

Commit

Permalink
disable Homebrew releases due to permission issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kolesnikov committed Feb 19, 2024
1 parent 7845af3 commit 75fbd6f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
branches:
- main
- /refs/heads/main
- fix-gha-releaser
- /refs/heads/fix-gha-releaser

jobs:

Expand Down Expand Up @@ -45,8 +43,8 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git tag ${{ steps.version.outputs.v-version }}rc
git push origin -u ${{ steps.version.outputs.v-version }}rc
git tag ${{ steps.version.outputs.v-version }}
git push origin -u ${{ steps.version.outputs.v-version }}
## goreleaser/goreleaser-action@v5
- uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8
Expand All @@ -55,4 +53,4 @@ jobs:
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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"
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,20 @@ 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
```
-->

https://github.com/zalando/rds-health/releases

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

Expand Down

0 comments on commit 75fbd6f

Please sign in to comment.