From e347133698ddc678b4c9604bcc446463b9b7b621 Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Sun, 28 Jul 2024 10:46:38 +0000 Subject: [PATCH] fix: correct platforms definition in the workflows docker build stage --- .github/workflows/ci.yaml | 5 +---- .github/workflows/release.yaml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 953d307..69de896 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,10 +76,7 @@ jobs: with: file: "Dockerfile" context: . - platforms: - - linux/amd64 - - linux/arm64 - - darwin/arm64 + platforms: linux/amd64, linux/arm64, darwin/arm64 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 ca1c17c..26871e1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,10 +30,7 @@ jobs: with: file: "Dockerfile" context: . - platforms: - - linux/amd6 - - linux/arm64 - - darwin/arm64 + platforms: linux/amd6, linux/arm64, darwin/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}