Skip to content

Commit

Permalink
Add Github Attestations support
Browse files Browse the repository at this point in the history
  • Loading branch information
dfunkt committed May 4, 2024
1 parent 15e35f4 commit 61fef93
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
- name: Bake ${{ matrix.base_image }} containers
uses: docker/bake-action@v4
id: build
env:
BASE_TAGS: "${{ env.BASE_TAGS }}"
CONTAINER_REGISTRIES: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
Expand All @@ -63,3 +64,15 @@ jobs:
*.platform=linux/amd64,linux/arm64
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
- name: Extract digest
id: digest
run: |
echo "${{ steps.build.outputs.metadata }}" | jq -r ".["${{ matrix.base_image }}-multi"].containerimage.digest"
- name: Generate build provenance attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
subject-digest: ${{ steps.digest }}
push-to-registry: true

0 comments on commit 61fef93

Please sign in to comment.