Skip to content

Commit 90d032a

Browse files
committed
Fix brew action
1 parent d57a776 commit 90d032a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/actions/brew/action.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@ name: brew
22
runs:
33
using: composite
44
steps:
5+
- name: Set up Homebrew
6+
uses: Homebrew/actions/setup-homebrew@master
7+
58
- shell: bash
69
run: |
710
set -x
8-
brew install \
11+
brew test-bot --only-cleanup-before
12+
brew test-bot --only-setup
13+
brew install --force --overwrite \
914
pkg-config \
1015
autoconf \
1116
bison \
1217
re2c
13-
brew install \
18+
brew install --force --overwrite \
1419
1520
curl \
1621
krb5 \
@@ -33,4 +38,4 @@ runs:
3338
libjpeg \
3439
libxslt \
3540
postgresql
36-
brew link icu4c gettext --force
41+
brew link icu4c gettext --force --overwrite

0 commit comments

Comments
 (0)