From 367189fe1583402c6faa9d3f0a3a58f20c3ce0a7 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan <33737564+Sg312@users.noreply.github.com> Date: Mon, 29 Sep 2025 20:57:00 -0700 Subject: [PATCH] fix(ci): fix docker manifest build (#1495) --- .github/workflows/images.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index e55e227b8e..ff6344c78a 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -129,12 +129,9 @@ jobs: - name: Generate ARM64 tags id: meta - uses: docker/metadata-action@v5 - with: - images: ${{ matrix.image }} - tags: | - type=raw,value=latest-arm64 - type=sha,format=long,suffix=-arm64 + run: | + IMAGE="${{ matrix.image }}" + echo "tags=${IMAGE}:latest-arm64,${IMAGE}:${{ github.sha }}-arm64" >> $GITHUB_OUTPUT - name: Build and push ARM64 to GHCR uses: useblacksmith/build-push-action@v2