From 779402e8bb1fdbf9c582897c9e6d6881b67be25c Mon Sep 17 00:00:00 2001 From: Jeremy PLANCKEEL Date: Thu, 5 Mar 2026 09:55:35 +0100 Subject: [PATCH] feat: add multi-architecture support for Docker image build --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 684a58f..7017182 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: - name: Build and Push on Docker Hub env: KO_DOCKER_REPO: bananaops/cloudoff - run: ko publish . --bare --tags latest,${{steps.version_tag.outputs.tag}} + run: ko publish . --platform=linux/amd64,linux/arm64 --bare --tags latest,${{steps.version_tag.outputs.tag}} release-helm: needs: [release]