2023-03-30 14:54:45 +02:00
|
|
|
name: Dockerbuild
|
|
|
|
on:
|
|
|
|
workflow_dispatch: {}
|
|
|
|
push:
|
|
|
|
branches: [master, develop]
|
|
|
|
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:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Log in to the Container registry
|
2023-05-03 23:16:30 +02:00
|
|
|
uses: docker/login-action@40891eba8c2bcd1309b07ba8b11232f313e86779
|
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
|
2023-05-09 07:53:36 +02:00
|
|
|
uses: docker/metadata-action@c4ee3adeed93b1fa6a762f209fb01608c1a22f1e
|
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
|
2023-05-16 18:31:13 +02:00
|
|
|
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
|
2023-03-30 14:54:45 +02:00
|
|
|
with:
|
|
|
|
context: dockerbuild
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|