Checkout runner image
Some checks failed
Build Game / Build & push runner image (push) Failing after 7s
Build Game / export (push) Failing after 0s

This commit is contained in:
Benjamin Morgan 2025-10-20 18:55:13 -06:00
parent 13d1ded709
commit b0662d1372

View file

@ -12,6 +12,14 @@ jobs:
name: Build & push runner image
runs-on: docker-cli-node24 # the label of your runner
steps:
- name: Checkout runner Dockerfile only
uses: actions/checkout@v5
with:
sparse-checkout: |
.forgejo/runners/Dockerfile
sparse-checkout-cone-mode: false
fetch-depth: 1
- name: Build & push runner image
run: |
docker build --network=host -t ${{ vars.REGISTRY_URL }}/asteroids/runner:latest -f .forgejo/runner/Dockerfile .