Fix missing log message fields in systemd journal (bump github.com/icinga/icinga-go-library from 0.3.0 to 0.3.1) #995
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
push: | |
branches: [ main ] | |
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 | |
- if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
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 |