2020-06-17 11:16:02 +02:00
|
|
|
name: Docker
|
|
|
|
|
2022-06-08 11:28:40 +02: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.
|
|
|
|
|
2020-06-17 11:16:02 +02:00
|
|
|
on:
|
2023-03-01 12:55:28 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '30 23 * * *'
|
2020-06-17 11:16:02 +02:00
|
|
|
push:
|
2022-06-08 11:28:40 +02:00
|
|
|
branches: [ "main" ]
|
|
|
|
# Publish semver tags as releases.
|
|
|
|
tags: [ 'v*.*.*' ]
|
2020-06-17 11:16:02 +02:00
|
|
|
pull_request:
|
2022-06-08 11:28:40 +02:00
|
|
|
branches: [ "main" ]
|
2020-06-17 11:16:02 +02:00
|
|
|
|
|
|
|
env:
|
2022-06-08 11:28:40 +02:00
|
|
|
# Use docker.io for Docker Hub if empty
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
# github.repository as <account>/<repo>
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2020-06-17 11:16:02 +02:00
|
|
|
|
|
|
|
|
2022-06-08 11:28:40 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
2020-06-17 11:16:02 +02:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2022-06-08 11:28:40 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
# This is used to complete the identity challenge
|
|
|
|
# with sigstore/fulcio when running outside of PRs.
|
|
|
|
id-token: write
|
2020-06-17 11:16:02 +02:00
|
|
|
|
|
|
|
steps:
|
2022-06-08 11:28:40 +02:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
# Install the cosign tool except on PR
|
|
|
|
# https://github.com/sigstore/cosign-installer
|
|
|
|
- name: Install cosign
|
|
|
|
if: github.event_name != 'pull_request'
|
2023-03-02 12:07:17 +01:00
|
|
|
uses: sigstore/cosign-installer@c3667d99424e7e6047999fb6246c0da843953c65 #v3.0.1
|
2023-03-01 12:55:28 +01:00
|
|
|
with:
|
|
|
|
cosign-release: 'v1.13.1'
|
2022-06-08 11:28:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Workaround: https://github.com/docker/build-push-action/issues/461
|
|
|
|
- name: Setup Docker buildx
|
2023-03-10 12:05:51 +01:00
|
|
|
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
|
2022-06-08 11:28:40 +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'
|
2023-03-02 12:06:59 +01:00
|
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
|
2022-06-08 11:28:40 +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
|
2023-03-02 12:07:14 +01:00
|
|
|
uses: docker/metadata-action@507c2f2dc502c992ad446e3d7a5dfbe311567a96
|
2022-06-08 11:28:40 +02: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
|
2023-03-02 12:07:09 +01:00
|
|
|
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
|
2022-06-08 11:28:40 +02:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-03-01 12:55:28 +01:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
|
2022-06-08 11:28:40 +02:00
|
|
|
|
|
|
|
# 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:
|
2023-03-14 16:41:00 +01:00
|
|
|
COSIGN_YES: true
|
2022-06-08 11:28:40 +02:00
|
|
|
# This step uses the identity token to provision an ephemeral certificate
|
|
|
|
# against the sigstore community Fulcio instance.
|
2023-03-01 12:55:28 +01:00
|
|
|
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
|