Skip to content

Commit

Permalink
ci(docker): disable provenance attestations for docker/buildx#1533
Browse files Browse the repository at this point in the history
ghcr/quay have been giving unknown/unknown images since I released 0.12.0

docker/build-push-action#900 (comment)
  • Loading branch information
JosephKav committed Jul 19, 2023
1 parent 7c5bc60 commit 2136df0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-docker.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
password: ${{ secrets.GH_TOKEN }}

- name: Login to Quay.io
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: quay.io
Expand All @@ -76,6 +76,7 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/amd64,linux/arm,linux/arm64
provenance: false
build-args: |
BUILD_VERSION=${{ github.event.release.tag_name }}
GO_VERSION=${{ env.GO_VERSION }}
Expand All @@ -94,6 +95,7 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/amd64,linux/arm,linux/arm64
provenance: false
build-args: |
BUILD_VERSION=${{ env.sha_short }}
GO_VERSION=${{ env.GO_VERSION }}

0 comments on commit 2136df0

Please sign in to comment.