ci: target the macOS runner by label name macos (not macos:host)
macos-probe / probe (push) Successful in 57s
ci / gate (push) Successful in 2m46s

In act_runner a label is `<name>:<backend>`; `: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.
This commit is contained in:
claude@clouddev1
2026-06-14 21:21:13 +00:00
parent 52815f1a76
commit 0878c6df19
+4 -1
View File
@@ -19,7 +19,10 @@ on:
jobs: jobs:
probe: 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: steps:
- name: identity, SDK, toolchains - name: identity, SDK, toolchains
run: | run: |