From 077259fa10d838a9783422293ff123e8928d1501 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 12 May 2022 09:49:10 +0200 Subject: [PATCH] Update docker-publish.yml Testing multiplatform support for docker images --- .github/workflows/docker-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 67cd25b..0dd3274 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -55,9 +55,10 @@ jobs: # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action - name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + uses: docker/build-push-action@v3 with: context: . push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64,darwin/amd64,darwin/arm64,windows/amd64