From 70354a0ea84bdb120f153c0b703a48432ee1d661 Mon Sep 17 00:00:00 2001 From: Thales <> Date: Fri, 26 Jun 2026 09:30:50 +0100 Subject: [PATCH] fix(ci): target the macOS runner's default macOS/ARM64 labels The self-hosted runner advertises self-hosted/macOS/ARM64 (GitHub's default macOS labels), but the workflow required a custom 'osx' label that the runner no longer carries, so every macOS Release since alpha.15 sat queued with no matching runner. Match the default labels, consistent with the windows/linux release workflows. --- .github/workflows/macos-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos-release.yml b/.github/workflows/macos-release.yml index 54fb155e..37ff3f8c 100644 --- a/.github/workflows/macos-release.yml +++ b/.github/workflows/macos-release.yml @@ -13,7 +13,7 @@ concurrency: jobs: build-and-upload: # Runner must be darwin/arm64 with Rosetta 2, Xcode CLT, Homebrew, rustup, and zstd. - runs-on: [self-hosted, osx, arm64] + runs-on: [self-hosted, macOS, ARM64] timeout-minutes: 120 permissions: contents: write