From 93351e7c0712ce833e0ed2ae0cdfa0b348a5577c Mon Sep 17 00:00:00 2001 From: Nicholas Bucher Date: Thu, 2 Jan 2025 14:04:25 -0500 Subject: [PATCH] Added multi arch step Signed-off-by: Nicholas Bucher --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 81493b9e..f0c5daf8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -67,6 +67,6 @@ jobs: - name: Build and push Docker image run: | - docker build --tag gcr.io/solo-public/docs/portal-frontend:${RELEASE_TAG} --tag gcr.io/solo-public/docs/portal-frontend:latest . + docker buildx build --platform linux/amd64,linux/arm64 --tag gcr.io/solo-public/docs/portal-frontend:${RELEASE_TAG} --tag gcr.io/solo-public/docs/portal-frontend:latest . docker push gcr.io/solo-public/docs/portal-frontend:${RELEASE_TAG} docker push gcr.io/solo-public/docs/portal-frontend:latest