This commit is contained in:
Tomas Dvorak
2026-04-28 10:12:30 +02:00
parent 5657ed74e3
commit 5fae9779ad
4 changed files with 78 additions and 250 deletions
+66
View File
@@ -0,0 +1,66 @@
name: Docker Images
on:
push:
branches:
- "**"
tags:
- "v*.*.*"
permissions:
contents: read
packages: write
concurrency:
group: docker-images-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set image repository
id: image
run: echo "repository=ghcr.io/${GITHUB_REPOSITORY,,}" >> "$GITHUB_OUTPUT"
- name: Use GitHub token for GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ steps.image.outputs.repository }}
tags: |
type=sha,format=short,prefix=sha-
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
file: ./excalidraw-full.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max