-
-
Notifications
You must be signed in to change notification settings - Fork 10
71 lines (66 loc) · 2.15 KB
/
_docker-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Create and publish a Docker image
on:
workflow_call:
inputs:
image_suffix:
required: true
description: Suffix of generated dockerimages' name
type: string
context:
required: true
description: Context, docker build is executed in
type: string
dockerfile:
required: true
description: Dockerfile location (relative to context)
type: string
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/navigatum-${{ inputs.image_suffix }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
packages: write
attestations: write
outputs:
tags: ${{ steps.meta.outputs.tags }}
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
provenance: mode=max
sbom: true
context: ${{ inputs.context }}
push: true
file: "${{ inputs.context }}/${{ inputs.dockerfile }}"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GIT_COMMIT_SHA=${{ github.sha }}
GIT_COMMIT_MESSAGE="${github.event.head_commit.message//\n/}"
cache-from: type=gha
cache-to: type=gha,mode=min
- name: Attest
uses: actions/attest-build-provenance@v1
id: attest
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: false # idk what is happening here with invalid image names, needs debugging