From 0a2c5d8fd13402728fb0e52759c302a0db2b4517 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Sun, 14 Jul 2024 14:51:31 -0700 Subject: [PATCH] CI: Fix MacOS checks --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 908dc49c7..1aa41d29a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: popd - name: Install dependencies (MacOS) - if: matrix.config.os == 'macos-latest' + if: startsWith(matrix.config.os, 'macos-') run: | export HOMEBREW_NO_INSTALL_CLEANUP=1 export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 @@ -158,14 +158,14 @@ jobs: # macOS artifacts - name: Generate macOS installer - if: matrix.config.os == 'macos-latest' + if: startsWith(matrix.config.os, 'macos-') run: | meson compile osx-bundle -C build meson compile osx-build-dmg -C build - name: Upload artifacts - macOS dmg uses: actions/upload-artifact@v3 - if: matrix.config.os == 'macos-latest' + if: startsWith(matrix.config.os, 'macos-') with: name: ${{ matrix.config.name }} - installer path: build/Aegisub-*.dmg