From 91c76777cb7ee864b45e14d123c79c08f0c2d5b9 Mon Sep 17 00:00:00 2001 From: Lahfir Date: Mon, 23 Feb 2026 01:03:24 -0800 Subject: [PATCH] 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. --- .github/workflows/release.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 836fa8f..edcd175 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: