Hello, world
Some checks failed
docker-image / docker (push) Failing after 25s

This commit is contained in:
Stefan Bethke 2025-05-30 19:04:13 +02:00
commit d702695b3b
6 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,31 @@
name: docker-image
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: git.hamburg.ccc.de
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64,linux/arm64
tags: git.hamburg.ccc.de/ccchh/hmdooris/hmdooris:latest