From b1c00f12b824c63944d071de7be7bc2f5a92c9e0 Mon Sep 17 00:00:00 2001 From: Cmochance <3216202644@qq.com> Date: Tue, 19 May 2026 19:39:59 +0800 Subject: [PATCH] ci(release): use macos-15-intel runner for Intel build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #42 switched to `macos-15`, but that label resolves to the `macos-15-arm64` image (per actions/runner-images README). The job "succeeded" only because it produced another aarch64 binary — verified by inspecting workflow run 26093996486: the macos-x64 artifact contained `codex_switch_1.5.10_aarch64.dmg` and the job log shows `Image: macos-15-arm64`. The correct free standard Intel runner is `macos-15-intel` (along with `macos-26-intel`); both are documented as standard runners separately from the paid `-large` / `-xlarge` tier. Refs: actions/runner-images README "Available Images" table — | macOS 15 | x64 | `macos-latest-large`, `macos-15-large`, or `macos-15-intel` | --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d17f9f5..0fd8b61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,7 +80,7 @@ jobs: dist/*.dmg dist/*.pkg - label: macos-x64 - os: macos-15 + os: macos-15-intel target: x86_64-apple-darwin tauri_script: tauri:build:macos-release artifacts: |