Skip to content

Commit

Permalink
install homebrew on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tjb committed Jan 26, 2025
1 parent cbc9b91 commit 729cd5b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "1.23.5"

- name: Install Homebrew
run: |
sudo apt-get update
sudo apt-get install -y build-essential curl file git
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> ~/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
- name: Install GoReleaser
run: brew install goreleaser
Expand Down

0 comments on commit 729cd5b

Please sign in to comment.