From 6308c1c045d446b10d4b925b3316e652709b9cdb Mon Sep 17 00:00:00 2001 From: Sultan Uramaev Date: Thu, 26 Sep 2024 09:13:36 +0300 Subject: [PATCH] cibuild.yml: correctly check for macOS when determining the need of macOS packages installation https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions --- .github/workflows/cibuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 076ff06e63f..7ed11145e88 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -127,7 +127,7 @@ jobs: libvorbis-dev:${{ matrix.platform.arch }} - name: Install macOS packages - if: ${{ matrix.platform.name == 'macOS' }} + if: ${{ startsWith(matrix.platform.name, 'macOS') }} run: | brew update brew install sdl2 lzo libogg libvorbis theora