Some checks failed
Docker - build image / 🏗️ Docker builder (latest from master) 🏗️ (push) Failing after 12s
Submodule contains only dev context (Claude agents, design system), not needed for building the Docker image. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
528 B
YAML
20 lines
528 B
YAML
name: Docker - build image
|
|
run-name: ${{ gitea.actor }} builds image for project 🏗️
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
jobs:
|
|
builder:
|
|
name: 🏗️ Docker builder (latest from master) 🏗️
|
|
runs-on: dind
|
|
steps:
|
|
- name: "[code] repository checkout"
|
|
uses: actions/checkout@v3
|
|
- name: "[ledo] Image build"
|
|
run: ledo image build
|
|
- name: "[ledo] Image push"
|
|
run: ledo image push
|
|
- name: "[docker] system prune"
|
|
run: docker system prune -af --volumes
|