docker-zig-yarn/.forgejo/workflows/build.yaml
Madeorsk 8f40f45995
Some checks failed
/ build_docker (push) Failing after 11s
Initial configuration and Dockerfile.
2025-01-14 11:02:04 +01:00

31 lines
787 B
YAML

on:
push:
tags:
- "*"
jobs:
build_docker:
runs-on: docker
container:
image: docker.zeptotech.net/dind-node
services:
dind:
image: docker:dind
env:
DOCKER_HOST: tcp://0.0.0.0:2375
DOCKER_TLS: 0
ports:
- 2376:2375
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: docker.zeptotech.net
username: ${{ vars.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- uses: docker/setup-buildx-action@v3
with:
endpoint: tcp://dind:2376
- uses: docker/build-push-action@v6
with:
push: true
tags: zeptotech/zig-yarn:${{ github.ref_name }}