From bbd267aa58360a134d30c251924cc2f6aa250f68 Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Sun, 28 Jul 2024 11:07:02 +0000 Subject: [PATCH] fix: correct platforms definition in the workflows docker build stage --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2fbfd08..f1d82c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,7 +76,7 @@ jobs: with: file: "Dockerfile" context: . - platforms: linux/amd64, darwin/arm64 + platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a2280ee..86bccb1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,7 +30,7 @@ jobs: with: file: "Dockerfile" context: . - platforms: linux/amd6, darwin/arm64 + platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}