From 18ec34e9166c4dbe91ced06165d2940c23c30372 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 2 Mar 2025 11:25:53 +0100 Subject: [PATCH] Swap macOS cross and host targets Apparently the `macos-latest` runner silently changed architectures with the macOS 14 update. Fun. --- .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 e1e46cd7..872d2c1a 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-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: x86_64-apple-darwin } + - { name: windows, os: windows-latest, cross-target: '' } name: Package plugin binaries runs-on: ${{ matrix.os }} steps: