blob: 4271c37799b201bb16d21b7907cbabd98729ae97 (
plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
on:
workflow_call:
inputs:
image_name:
required: true
type: string
containerfile:
description: containerfile to build
required: true
type: string
context:
required: true
type: string
extra_tags:
description: extra tags to apply to image
required: true
type: string
build_args:
required: true
type: string
secrets:
akmods_key:
description: private akmods key for signing
required: false
env:
REGISTRY: ghcr.io/${{ github.repository_owner }}
jobs:
build:
name: Build and Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract metadata
id: metadata
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
tags: |
type=sha
type=ref,event=branch
type=ref,event=pr
type=schedule,pattern={{date 'YYYYMMDD'}}
- name: Get akmods signing key
if: github.event_name != 'pull_request'
env:
AKMODS_KEY: ${{ secrets.akmods_key }}
run: |
echo "$AKMODS_KEY" > akmods/certs/private_key.priv
- name: Build image
id: build
uses: redhat-actions/buildah-build@v2
with:
containerfiles: |
${{ inputs.containerfile }}
image: ${{ inputs.image_name }}
context: ${{ inputs.context }}
tags: |
${{ steps.metadata.outputs.tags }}
${{ inputs.extra_tags }}
labels: ${{ steps.metadata.outputs.labels }}
build-args: ${{ inputs.build_args }}
- name: Login to registry
if: github.event_name != 'pull_request'
uses: redhat-actions/podman-login@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Push to registry
id: push
if: github.event_name != 'pull_request'
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build.outputs.image }}
tags: ${{ steps.build.outputs.tags }}
registry: ${{ env.REGISTRY }}
extra-args: |
--disable-content-trust
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3
- name: Sign image
if: github.event_name != 'pull_request'
env:
DIGEST: ${{ steps.push.outputs.digest }}
TAGS: ${{ steps.build.outputs.tags }}
run: |
images=()
for tag in ${TAGS}; do
images+=("${tag}@${DIGEST}")
done
cosign sign --yes "${images[@]}"
|