From 7de9e5fb19d1e518fb98d4cd47d5ccfef7bf7f53 Mon Sep 17 00:00:00 2001 From: Siddharth Ganesan <33737564+Sg312@users.noreply.github.com> Date: Mon, 29 Sep 2025 20:55:52 -0700 Subject: [PATCH] fix(ci): fix docker manifest build --- .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 e55e227b8..ff6344c78 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