Skip to content

Commit

Permalink
github-action: provenance for docker (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Apr 26, 2024
1 parent 2cfaf5e commit 816102b
Showing 1 changed file with 31 additions and 6 deletions.
37 changes: 31 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ on:
permissions:
contents: read

env:
DOCKER_IMAGE_NAME: opbeans/opbeans-php

jobs:

release:
runs-on: ubuntu-latest

permissions:
attestations: write
contents: read
id-token: write
steps:
- uses: actions/checkout@v4

Expand All @@ -25,9 +31,28 @@ jobs:
roleId: ${{ secrets.VAULT_ROLE_ID }}
secretId: ${{ secrets.VAULT_SECRET_ID }}

- name: Set version if tags
run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/v')
- name: Extract metadata (tags, labels)
id: docker-meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
with:
images: ${{ env.DOCKER_IMAGE_NAME }}
tags: |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
# tag event
type=ref,enable=true,prefix=,suffix=,event=tag
- name: Build and push image
id: docker-push
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
with:
context: .
push: true
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}

- name: Run publish
run: make publish
- name: Attest image
uses: github-early-access/generate-build-provenance@main
with:
subject-name: ${{ env.DOCKER_IMAGE_NAME }}
subject-digest: ${{ steps.docker-push.outputs.digest }}
push-to-registry: false

0 comments on commit 816102b

Please sign in to comment.