Skip to content

Commit

Permalink
Change: Disable docker load function in multi arch builds (#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalholthaus committed Jun 18, 2024
1 parent bf27146 commit 404479d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container-build-push-generic/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ runs:
labels: ${{ steps.meta.outputs.labels }}
build-args: ${{ inputs.build-args }}
secrets: ${{ inputs.build-secrets }}
load: ${{ github.event_name == 'pull_request' }}
load: ${{ github.event_name == 'pull_request' && !contains(inputs.image-platforms, ',') }}

- name: Container signing
if: ${{ github.event_name != 'pull_request' && inputs.cosign-key && inputs.cosign-key-password }}
Expand Down

0 comments on commit 404479d

Please sign in to comment.