From 74348c3ef56f66f2f89de28e158d2c128ea84319 Mon Sep 17 00:00:00 2001 From: whekin Date: Mon, 16 Mar 2026 03:43:02 +0400 Subject: [PATCH] fix(ci): build Docker images for linux/amd64 only to fix Cloud Run deploys --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3dadc73..1ee5998 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,6 +114,7 @@ jobs: file: apps/${{ matrix.service }}/Dockerfile push: false tags: household-${{ matrix.service }}:ci + platforms: linux/amd64 cache-from: type=gha cache-to: type=gha,mode=max @@ -166,6 +167,7 @@ jobs: file: apps/${{ matrix.service }}/Dockerfile push: true tags: ${{ steps.image.outputs.name }} + platforms: linux/amd64 cache-from: type=registry,ref=${{ steps.image.outputs.cache_ref }} cache-to: type=registry,ref=${{ steps.image.outputs.cache_ref }},mode=max