From 1c29c5e36f23c06fc513245d1396322af2b9e8f4 Mon Sep 17 00:00:00 2001 From: scito Date: Fri, 5 Apr 2024 13:28:12 +0200 Subject: [PATCH] only for macos-14 --- .github/workflows/ci_release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 335c81e..ae9b663 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -296,12 +296,15 @@ jobs: sudo apt-get install -y libzbar0 - name: Install zbar shared lib for QReader (macOS) if: runner.os == 'macOS' + run: | + brew install zbar create-dmg + - name: Setup homebrew env for macOS arm64 + if: matrix.os == 'macos-14' run: | # https://earthly.dev/blog/homebrew-on-m1/ eval "$(/opt/homebrew/bin/brew shellenv)" - brew install zbar create-dmg - name: List MacOS dirs - if: runner.os == 'macOS' + if: matrix.os == 'macos-14' run: | echo "ls /opt/homebrew/Cellar/zbar" ls -al "/opt/homebrew/Cellar/zbar"