From f2ea7ca5d1621dcaec46e0638c6f9ab303542d92 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 15 Dec 2024 00:28:22 +0100 Subject: [PATCH] git: Silence brew github actions annotations --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 75637d53f..fa4f7d21a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -206,15 +206,15 @@ jobs: - name: ⬇️ Install dependencies run: | - brew reinstall python 2>&1 >/dev/null || true - brew link --overwrite python 2>&1 >/dev/null || true - brew bundle --no-lock --file dist/Brewfile 2>&1 >/dev/null || true + brew reinstall python || true + brew link --overwrite --quiet python || true + brew bundle --no-lock --quiet --file dist/Brewfile || true rm -rf /usr/local/Cellar/capstone - name: ⬇️ Install classic glfw if: ${{! matrix.custom_glfw }} run: | - brew install glfw 2>&1 >/dev/null || true + brew install --quiet glfw || true - name: ⬇️ Install .NET uses: actions/setup-dotnet@v4