ci
Some checks failed
Build and push image / build (push) Failing after 4s
CI / bump-infra (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
Philip Peterson 2026-06-08 19:23:57 -07:00
parent d7a95529cb
commit 150cce5858

View file

@ -11,9 +11,25 @@ env:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
DOCKER_HOST: tcp://dind:2375
DOCKER_TLS_CERTDIR: ""
services:
dind:
image: docker:dind
env:
DOCKER_TLS_CERTDIR: ""
options: --privileged
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install docker CLI
run: apk add --no-cache docker-cli || apt-get install -y docker.io || true
- name: Wait for Docker daemon
run: |
until docker info >/dev/null 2>&1; do sleep 1; done
- name: Log in to registry - name: Log in to registry
run: | run: |
echo "${{ secrets.FORGE_TOKEN }}" \ echo "${{ secrets.FORGE_TOKEN }}" \