From 404479d778a82aafa95db8eeafe13d202e7ae933 Mon Sep 17 00:00:00 2001 From: pascalholthaus <94793111+pascalholthaus@users.noreply.github.com> Date: Tue, 18 Jun 2024 13:01:46 +0200 Subject: [PATCH] Change: Disable docker load function in multi arch builds (#1155) --- container-build-push-generic/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-build-push-generic/action.yaml b/container-build-push-generic/action.yaml index 87b5a745..21441085 100644 --- a/container-build-push-generic/action.yaml +++ b/container-build-push-generic/action.yaml @@ -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 }}