File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
1515
1616jobs :
1717 ui-image-build :
18- uses : trustification /release-tools/.github/workflows/build-push-images.yaml@main
18+ uses : carlosthe19916 /release-tools/.github/workflows/build-push-images.yaml@main
1919 with :
2020 registry : " ghcr.io"
2121 image_name : " ${{ github.repository_owner }}/trustify-ui"
2525 secrets :
2626 registry_username : ${{ github.actor }}
2727 registry_password : ${{ secrets.GITHUB_TOKEN }}
28+
29+ attestations :
30+ needs : ui-image-build
31+ runs-on : ubuntu-latest
32+ permissions :
33+ id-token : write
34+ contents : read
35+ attestations : write
36+ packages : write
37+ steps :
38+ - name : Log in to registry
39+ uses : redhat-actions/podman-login@main
40+ with :
41+ username : ${{ github.actor }}
42+ password : ${{ secrets.GITHUB_TOKEN }}
43+ registry : ghcr.io
44+ - name : Generate artifact attestation
45+ uses : actions/attest-build-provenance@v2
46+ with :
47+ subject-name : ghcr.io/${{ github.repository_owner }}/trustify-ui
48+ subject-digest : ${{ needs.ui-image-build.outputs.digest }}
49+ push-to-registry : true
You can’t perform that action at this time.
0 commit comments