From 549eb18ec66731f9eb299de2b25eb374be4dacdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Fri, 14 Jun 2024 19:37:07 +0200 Subject: [PATCH] Trying to fix broken homebrew... --- .github/workflows/osx.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 92b1e44..312166c 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -15,7 +15,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Install dependencies - run: brew install qt@5 protobuf@21 + run: | + brew update + brew install qt@5 protobuf@21 + brew link --force protobuf@21 + brew link --force qt@5 - name: Configure build run: qmake PROTOBUF=/usr/local/opt/protobuf@21 pbfplugin.pro - name: Build project @@ -30,7 +34,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Install dependencies - run: brew install qt@6 protobuf@21 + run: | + brew update + brew install qt@6 protobuf@21 + brew link --force protobuf@21 - name: Configure build run: qmake PROTOBUF=/usr/local/opt/protobuf@21 pbfplugin.pro - name: Build project