Skip to content

[TMP] Run workflow for testing #989

[TMP] Run workflow for testing

[TMP] Run workflow for testing #989

Workflow file for this run

name: Docker
on:
push:
branches: [ main, container-commit-hash ]
pull_request:
branches: [ main ]
release:
types: [ published ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/metadata-action@v5
id: meta
with:
images: |
icinga/icinga-notifications
tags: |
type=ref,event=branch,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ steps.meta.outputs.tags }}
# Keep the .git to allow including the commit in the --version output, see also:
# https://docs.docker.com/build/building/context/#keep-git-directory
build-args: |
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1