2024-05-18 22:14:25 +02:00
|
|
|
name: docker-image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
2024-05-18 22:45:20 +02:00
|
|
|
# runs-on: ubuntu-latest
|
2024-05-19 10:22:36 +02:00
|
|
|
# runs-on: docker
|
2024-05-19 10:24:20 +02:00
|
|
|
runs-on: self-hosted
|
2024-05-18 22:52:04 +02:00
|
|
|
# container:
|
|
|
|
# image: node:16-bullseye
|
2024-05-18 22:14:25 +02:00
|
|
|
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
|