6
6
- cron : ' 5 3 * * *' # 3am-ish UTC everyday (timed against official fedora container pushes)
7
7
workflow_dispatch :
8
8
9
+ env :
10
+ REGISTRY : ghcr.io
11
+
9
12
jobs :
10
13
build-custom-silverblue :
11
14
name : Build, sign, then push
12
15
runs-on : ubuntu-24.04
13
16
permissions :
17
+ attestations : write
14
18
contents : read
15
- packages : write
16
19
id-token : write
20
+ packages : write
17
21
18
22
steps :
19
23
- name : Checkout
20
24
uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
21
-
22
- - name : Install cosign
23
- if : ${{ github.event_name != 'pull_request' }}
24
- uses : sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
25
- with :
26
- cosign-release : ' v2.4.1'
27
25
28
26
- name : Build image
29
27
id : build
@@ -35,14 +33,14 @@ jobs:
35
33
tags : |
36
34
${{ github.sha }}
37
35
40
38
-
36
+
39
37
- name : Log in to GitHub Container Registry
40
38
uses : redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603 # v1.7
41
39
if : ${{ github.event_name != 'pull_request' }}
42
40
with :
43
41
username : ${{ github.actor }}
44
42
password : ${{ secrets.GITHUB_TOKEN }}
45
- registry : ghcr.io /${{ github.repository_owner }}
43
+ registry : ${{ env.REGISTRY }} /${{ github.repository_owner }}
46
44
47
45
- name : Push to GitHub Container Registry
48
46
uses : redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c # v2.8
@@ -51,17 +49,15 @@ jobs:
51
49
with :
52
50
image : ${{ steps.build.outputs.image }}
53
51
tags : ${{ steps.build.outputs.tags }}
54
- registry : ghcr.io /${{ github.repository_owner }}
52
+ registry : ${{ env.REGISTRY }} /${{ github.repository_owner }}
55
53
56
- - name : Sign the published OCI image
54
+ - name : Generate artifact attestation
55
+ uses : actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c # v1.4.3
57
56
if : ${{ github.event_name != 'pull_request' }}
58
- env :
59
- digest : ${{ steps.push.outputs.digest }}
60
- fully_qualified_image_names_json : ${{ steps.push.outputs.registry-paths }}
61
- run : >
62
- echo "${fully_qualified_image_names_json}"
63
- | jq -r '.[]'
64
- | xargs -I {} cosign sign --yes "{}@${digest}"
57
+ with :
58
+ subject-name : ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ steps.build.outputs.image }}
59
+ subject-digest : ${{ steps.push.outputs.digest }}
60
+ push-to-registry : true
65
61
66
62
- name : Echo outputs for auditing
67
63
if : github.event_name != 'pull_request'
0 commit comments