From 3497575a829fc924e4db58ccd0151d39f929d5e9 Mon Sep 17 00:00:00 2001 From: JustinMShea Date: Thu, 12 Dec 2024 04:06:57 -0600 Subject: [PATCH] Everything builds...one last attempt at macOS homebrew error in GH actions --- .github/workflows/slack-notify-build.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/slack-notify-build.yml b/.github/workflows/slack-notify-build.yml index 7a2cf3e..9d0f0ab 100644 --- a/.github/workflows/slack-notify-build.yml +++ b/.github/workflows/slack-notify-build.yml @@ -58,14 +58,17 @@ jobs: - run: tlmgr --version - - name: Ensure macOS pkgconf is installed + - name: Print Homebrew Environment Variables if: runner.os == 'macOS' run: | - if ! brew list pkgconf &>/dev/null; then - brew install pkgconf - else - echo "pkgconf is already installed." - fi + echo "HOMEBREW_PREFIX: $(brew --prefix)" + echo "HOMEBREW_CELLAR: $(brew --cellar)" + + - name: Update Homebrew and Reinstall pkg-config + if: runner.os == 'macOS' + run: | + brew update + brew reinstall pkg-config - name: Install Ghostscript on Windows