2023-03-30 14:54:45 +02:00
|
|
|
name: Dockerbuild
|
|
|
|
on:
|
|
|
|
workflow_dispatch: {}
|
|
|
|
push:
|
2024-05-15 00:13:03 +02:00
|
|
|
branches: [master, staging, develop]
|
2023-03-30 14:54:45 +02:00
|
|
|
paths:
|
|
|
|
- "dockerbuild/**"
|
|
|
|
concurrency: ${{ github.workflow }}-${{ github.ref_name }}
|
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
IMAGE_NAME: ${{ github.repository }}-dockerbuild
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Docker Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
2024-01-02 18:24:45 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-30 14:54:45 +02:00
|
|
|
|
2024-05-15 00:13:03 +02:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
|
|
|
|
with:
|
|
|
|
install: true
|
|
|
|
|
2023-03-30 14:54:45 +02:00
|
|
|
- name: Log in to the Container registry
|
2024-06-11 14:28:46 +02:00
|
|
|
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
|
2023-03-30 14:54:45 +02:00
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Extract metadata for Docker
|
|
|
|
id: meta
|
2024-02-22 10:03:17 +01:00
|
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5
|
2023-03-30 14:54:45 +02:00
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
2024-07-02 16:54:53 +02:00
|
|
|
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6
|
2023-03-30 14:54:45 +02:00
|
|
|
with:
|
|
|
|
context: dockerbuild
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2024-05-15 00:13:03 +02:00
|
|
|
platforms: linux/amd64,linux/arm64
|