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

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
dlawler489 2026-06-19 21:25:10 +10:00
parent 17336c97b6
commit f35ba17401

View file

@ -6,7 +6,10 @@ on:
jobs:
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:
# 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.