Run build job on host-mode 'docker' label (ubuntu-latest is a container without docker)
Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 1s
Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 1s
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
17336c97b6
commit
f35ba17401
1 changed files with 4 additions and 1 deletions
|
|
@ -6,7 +6,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push:
|
||||||
runs-on: ubuntu-latest
|
# 'docker' is the host-mode label (no container image mapping), so the job
|
||||||
|
# runs directly on the Mac Mini where OrbStack's docker and git are present.
|
||||||
|
# 'ubuntu-latest' maps to a container that lacks docker, so builds fail there.
|
||||||
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
# Manual checkout with plain git — the runner has no Node, so JS actions
|
# Manual checkout with plain git — the runner has no Node, so JS actions
|
||||||
# like actions/checkout can't run. git + docker are available on the host.
|
# like actions/checkout can't run. git + docker are available on the host.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue