From 0878c6df19b83ce5a5cae93e49ea6e2646433c6f Mon Sep 17 00:00:00 2001 From: "claude@clouddev1" Date: Sun, 14 Jun 2026 21:21:13 +0000 Subject: [PATCH] ci: target the macOS runner by label name `macos` (not `macos:host`) In act_runner a label is `:`; `:host` is the execution- backend schema (run on host, no container), not part of the label. The runner registered as `macos:host` therefore has the label `macos`, which is what runs-on must reference. --- .gitea/workflows/macos-probe.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/macos-probe.yaml b/.gitea/workflows/macos-probe.yaml index 93cc630..a367f35 100644 --- a/.gitea/workflows/macos-probe.yaml +++ b/.gitea/workflows/macos-probe.yaml @@ -19,7 +19,10 @@ on: jobs: probe: - runs-on: "macos:host" + # Label NAME only. The runner was registered as `macos:host`, but `:host` is + # act_runner's execution-backend schema (run on the host, no container), not + # part of the label — so the label is just `macos`. + runs-on: macos steps: - name: identity, SDK, toolchains run: |