We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df83dbe commit 1f9c4cbCopy full SHA for 1f9c4cb
.github/workflows/base-image.yaml
@@ -33,6 +33,7 @@ jobs:
33
uses: docker/setup-buildx-action@v2
34
35
- name: Base image
36
+ id: build-and-push
37
run: |
38
docker buildx build \
39
--tag danielflook/terraform-github-actions-base:$GITHUB_RUN_ID \
@@ -54,3 +55,9 @@ jobs:
54
55
image
56
57
echo "digest=$(<manifest-list-digest.txt)" >> "$GITHUB_OUTPUT"
58
+
59
+ - name: Generate image attestation
60
+ uses: actions/attest-build-provenance@v2
61
+ with:
62
+ subject-name: index.docker.io/danielflook/terraform-github-actions-base
63
+ subject-digest: ${{ steps.build-and-push.outputs.digest }}
0 commit comments