fix: use macos-latest for both build targets

macos-13 Intel runners are no longer available. Cross-compile x86_64
on ARM runners instead, which Rust handles natively via --target.
This commit is contained in:
Lahfir 2026-02-23 01:03:24 -08:00
parent dd5532c454
commit 91c76777cb

View file

@ -29,14 +29,12 @@ jobs:
name: Build (${{ matrix.target }})
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
runs-on: ${{ matrix.runner }}
runs-on: macos-latest
strategy:
matrix:
include:
- target: aarch64-apple-darwin
runner: macos-latest
- target: x86_64-apple-darwin
runner: macos-13
target:
- aarch64-apple-darwin
- x86_64-apple-darwin
steps:
- uses: actions/checkout@v4
with: