Stefan Bethke
5458f21624
All checks were successful
docker-image / docker (push) Successful in 3m29s
35 lines
854 B
YAML
35 lines
854 B
YAML
name: docker-image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
docker:
|
|
# runs-on: ubuntu-latest
|
|
# runs-on: docker
|
|
runs-on: self-hosted
|
|
# container:
|
|
# image: node:16-bullseye
|
|
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@v5
|
|
with:
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: git.hamburg.ccc.de/ccchh/hedgedoc-expire/hedgedoc-expire:latest |