2024-03-12 20:59:07 +01:00
|
|
|
# SPDX-FileCopyrightText: 2021-2024 Winni Neessen <wn@neessen.dev>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2022-05-11 14:54:24 +02:00
|
|
|
name: Docker
|
|
|
|
|
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '24 12 * * *'
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
2024-03-25 19:32:40 +01:00
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.github/workflow/docker-publish.yml'
|
|
|
|
- 'codecov.yml'
|
2022-05-11 14:54:24 +02:00
|
|
|
# Publish semver tags as releases.
|
|
|
|
tags: [ 'v*.*.*' ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
2024-03-25 19:32:40 +01:00
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.github/workflow/docker-publish.yml'
|
|
|
|
- 'codecov.yml'
|
2022-05-11 14:54:24 +02:00
|
|
|
|
2024-03-17 20:16:27 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-05-11 14:54:24 +02:00
|
|
|
env:
|
|
|
|
# Use docker.io for Docker Hub if empty
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
# github.repository as <account>/<repo>
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-03-17 23:22:53 +01:00
|
|
|
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
|
2022-05-11 14:54:24 +02:00
|
|
|
|
|
|
|
# Login against a Docker registry except on PR
|
|
|
|
# https://github.com/docker/login-action
|
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
|
|
if: github.event_name != 'pull_request'
|
2024-05-28 21:44:35 +02:00
|
|
|
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
|
2022-05-11 14:54:24 +02:00
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
# Extract metadata (tags, labels) for Docker
|
|
|
|
# https://github.com/docker/metadata-action
|
|
|
|
- name: Extract Docker metadata
|
|
|
|
id: meta
|
2024-03-19 20:42:34 +01:00
|
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
|
2022-05-11 14:54:24 +02:00
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
2022-05-12 10:04:48 +02:00
|
|
|
|
|
|
|
- name: Checkout
|
2024-03-17 23:22:53 +01:00
|
|
|
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
|
2022-05-12 10:04:48 +02:00
|
|
|
- name: Set up QEMU
|
2024-07-03 21:18:52 +02:00
|
|
|
uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # v3.1.0
|
2022-05-12 10:04:48 +02:00
|
|
|
- name: Set up Docker Buildx
|
2024-04-08 21:42:36 +02:00
|
|
|
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
|
2022-05-12 10:04:48 +02:00
|
|
|
- name: Build and push
|
2024-07-03 21:18:55 +02:00
|
|
|
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c # v6.3.0
|
2022-05-11 14:54:24 +02:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-05-12 09:56:17 +02:00
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v8,linux/arm/v7
|