Swap macOS cross and host targets

Apparently the `macos-latest` runner silently changed architectures with
the macOS 14 update. Fun.
This commit is contained in:
Robbert van der Helm
2025-03-02 11:25:53 +01:00
parent e8119e82f2
commit 18ec34e916

View File

@@ -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: