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 04ff24b commit ce8e006Copy full SHA for ce8e006
1 file changed
.github/workflows/release.yml
@@ -379,9 +379,13 @@ jobs:
379
password: ${{ secrets.DOCKER_PASSWORD }}
380
381
- name: Build and push
382
- id: docker_build
383
- uses: docker/build-push-action@v4
+ if: github.event_name != 'pull_request'
+ uses: docker/build-push-action@v6
384
+ env:
385
+ DOCKER_BUILDKIT: 1
386
with:
387
+ provenance: false
388
+ builder: ${{ steps.buildx.outputs.name }}
389
context: ${{ github.workspace }}
390
file: ${{ github.workspace }}/${{ matrix.BUILD_IMAGE_DOCKERFILE }}
391
push: true
@@ -390,5 +394,4 @@ jobs:
394
COMMANDBOX_VERSION=${{ env.commandbox_version }}
395
BASE_IMAGE_ARG=${{ env.ACTUAL_BASE_IMAGE }}
392
396
platforms: ${{ env.arch_platforms }}
393
- builder: buildx-multi-arch
397
tags: ${{ env.IMAGE_TAG }}
0 commit comments