From a3143790918704ac01b847ea1fee0c6498e2feea Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 13 Jul 2024 11:36:49 +0100 Subject: [PATCH] Fix auto Docker tag creation --- .github/workflows/docker_publish.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index 8102e8d..780f781 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -44,14 +44,15 @@ jobs: with: context: . push: true + provenance: mode=max + labels: ${{ steps.meta.outputs.labels }} tags: | ghcr.io/${{ github.repository }}:latest ghcr.io/${{ github.repository }}:${{ inputs.release }} - labels: ${{ steps.meta.outputs.labels }} - - name: Generate artifact attestation - uses: actions/attest-build-provenance@v1 - with: - subject-name: ghcr.io/${{ github.repository }}:${{ inputs.release }} - subject-digest: ${{ steps.push.outputs.digest }} - push-to-registry: true + # - name: Generate artifact attestation + # uses: actions/attest-build-provenance@v1 + # with: + # subject-name: ghcr.io/${{ github.repository }}:${{ inputs.release }} + # subject-digest: ${{ steps.push.outputs.digest }} + # push-to-registry: true