From cff0139c0961faa4a515f7c10aee04b9a8e5ede2 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Wed, 22 Mar 2023 21:41:29 +0100 Subject: [PATCH] fix: Add amd64 to helmfile docker build --- .github/workflows/container-stable.yaml | 2 +- .github/workflows/container-version.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-stable.yaml b/.github/workflows/container-stable.yaml index f3e145b..63cbe14 100644 --- a/.github/workflows/container-stable.yaml +++ b/.github/workflows/container-stable.yaml @@ -52,7 +52,7 @@ jobs: builder: ${{ steps.buildx.outputs.name }} context: ./dockerfiles file: ./dockerfiles/Dockerfile-helmfile - platforms: linux/arm64 + platforms: linux/amd64,linux/arm64 push: true tags: | ghcr.io/${{ github.repository }}-helmfile:latest diff --git a/.github/workflows/container-version.yaml b/.github/workflows/container-version.yaml index 662af96..f5d1a3a 100644 --- a/.github/workflows/container-version.yaml +++ b/.github/workflows/container-version.yaml @@ -57,7 +57,7 @@ jobs: builder: ${{ steps.buildx.outputs.name }} context: ./dockerfiles file: ./dockerfiles/Dockerfile-helmfile - platforms: linux/arm64 + platforms: linux/amd64,linux/arm64 push: true tags: | ghcr.io/${{ github.repository }}-helmfile:${{ env.TAG }}