From 1994450ba143139f7cb79537b2516b48b87152cc Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 23 Feb 2025 21:56:08 +0100 Subject: [PATCH] Fix the macOS CI runner `16c6c58f4d9f08c9c515c991c218bff235cff6e2` changed this to no longer refer to a specific runner (which should be fine with the target SDK option), but there was a typo in there. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d57a80bc..e1e46cd7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,9 @@ jobs: strategy: matrix: include: - - { name: ubuntu-22.04, os: ubuntu-22.04, cross-target: '' } - - { name: macos-universal, os: macos-macos-latest, cross-target: aarch64-apple-darwin } - - { name: windows, os: windows-latest, cross-target: '' } + - { name: ubuntu-22.04, os: ubuntu-22.04, cross-target: '' } + - { name: macos-universal, os: macos-latest, cross-target: aarch64-apple-darwin } + - { name: windows, os: windows-latest, cross-target: '' } name: Package plugin binaries runs-on: ${{ matrix.os }} steps: