From 50870bbe41640d091c0fc15174e06a6a3dcb5daa Mon Sep 17 00:00:00 2001 From: Daniele Piaggesi Date: Thu, 3 Oct 2024 17:23:01 +0200 Subject: [PATCH] fix(multiarch): removed arm64 image building due to google/cloud-sdk does not have yet an arm64 image --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64bc82f..b95b5ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: context: . file: ./Dockerfile push: false - platforms: "linux/arm64,linux/amd64" + platforms: "linux/amd64" tags: | ${{ env.registry }}/${{ env.repository }}:${{ steps.vars.outputs.tag }} ${{ env.registry }}/${{ env.repository }}:latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a3462b9..4dc9a31 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: context: . file: ./Dockerfile push: true - platforms: "linux/arm64,linux/amd64" + platforms: "linux/amd64" tags: | ${{ env.registry }}/${{ env.repository }}:${{ steps.vars.outputs.tag }} ${{ env.registry }}/${{ env.repository }}:latest \ No newline at end of file