2024-03-21 16:02:13 +01:00
|
|
|
# SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2024-03-21 15:47:46 +01:00
|
|
|
name: Docker build and publish
|
2023-12-27 18:28:01 +01:00
|
|
|
|
|
|
|
# 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:
|
2024-03-21 15:47:46 +01:00
|
|
|
- cron: '32 18 * * *'
|
2023-12-27 18:28:01 +01:00
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
# Publish semver tags as releases.
|
|
|
|
tags: [ 'v*.*.*' ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Use docker.io for Docker Hub if empty
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
# github.repository as <account>/<repo>
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
|
|
|
|
|
2024-03-21 15:47:46 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-12-27 18:28:01 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
# This is used to complete the identity challenge
|
|
|
|
# with sigstore/fulcio when running outside of PRs.
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
steps:
|
2024-03-21 15:47:46 +01:00
|
|
|
- name: Harden Runner
|
2024-09-11 11:00:59 +02:00
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
2024-03-21 15:47:46 +01:00
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
|
2023-12-27 18:28:01 +01:00
|
|
|
- name: Checkout repository
|
2024-10-08 10:25:30 +02:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
2023-12-27 18:28:01 +01:00
|
|
|
|
|
|
|
# Install the cosign tool except on PR
|
|
|
|
# https://github.com/sigstore/cosign-installer
|
|
|
|
- name: Install cosign
|
|
|
|
if: github.event_name != 'pull_request'
|
2024-10-07 10:55:18 +02:00
|
|
|
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da #v3.7.0
|
2023-12-27 18:28:01 +01:00
|
|
|
|
|
|
|
# Set up BuildKit Docker container builder to be able to build
|
|
|
|
# multi-platform images and export cache
|
|
|
|
# https://github.com/docker/setup-buildx-action
|
|
|
|
- name: Set up Docker Buildx
|
2024-10-04 10:11:10 +02:00
|
|
|
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
|
2023-12-27 18:28:01 +01: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-07-22 11:08:01 +02:00
|
|
|
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
|
2023-12-27 18:28:01 +01: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-21 15:47:46 +01:00
|
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
2023-12-27 18:28:01 +01:00
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
|
|
|
# Build and push Docker image with Buildx (don't push on PR)
|
|
|
|
# https://github.com/docker/build-push-action
|
|
|
|
- name: Build and push Docker image
|
|
|
|
id: build-and-push
|
2024-10-01 11:12:08 +02:00
|
|
|
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
|
2023-12-27 18:28:01 +01:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
|
|
|
|
# Sign the resulting Docker image digest except on PRs.
|
|
|
|
# This will only write to the public Rekor transparency log when the Docker
|
|
|
|
# repository is public to avoid leaking data. If you would like to publish
|
|
|
|
# transparency data even for private images, pass --force to cosign below.
|
|
|
|
# https://github.com/sigstore/cosign
|
|
|
|
- name: Sign the published Docker image
|
|
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
|
|
env:
|
|
|
|
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
|
|
|
|
TAGS: ${{ steps.meta.outputs.tags }}
|
|
|
|
DIGEST: ${{ steps.build-and-push.outputs.digest }}
|
|
|
|
# This step uses the identity token to provision an ephemeral certificate
|
|
|
|
# against the sigstore community Fulcio instance.
|
|
|
|
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
|