hedgedoc-expire/.forgejo/workflows/docker-image.yaml
Stefan Bethke 0f13bf4df4
Some checks are pending
docker-image / docker (push) Waiting to run
First stab at pipeline to build the image
2024-05-18 22:14:25 +02:00

31 lines
768 B
YAML

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 Docker Hub
uses: docker/login-action@v3
with:
registry: git.hamburg.ccc.de
username: ${{ secrets.FORGEJO_REGISTRY_USERNAME }}
password: ${{ secrets.FORGEJO_REGISTRY_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
tags: git.hamburg.ccc.de/ccchh/hedgedoc-expire/hedgedoc-expire:latest