From e616ab0898b36547aca8749e7538e4cb5a2fb773 Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Thu, 23 Jan 2025 18:27:04 +0100 Subject: [PATCH] Attempt to fix GitHub docker-publish workflow --- .github/workflows/docker-publish.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 6f287ce..ef9bf4d 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -14,13 +14,6 @@ jobs: contents: read packages: write - strategy: - fail-fast: true - matrix: - platform: - - linux/amd64 - - linux/arm64 - steps: - name: Checkout repository uses: actions/checkout@v4 @@ -56,7 +49,7 @@ jobs: uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 with: context: . - platforms: ${{ matrix.platform }} + platforms: linux/arm64,linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}