From 3eb438550a24eb092d3e31edfb1ae9a0ee89d749 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Wed, 16 Apr 2025 12:24:17 -0700 Subject: [PATCH] fix source name for docker images (#467) --- .github/workflows/docker-push-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-push-release.yml b/.github/workflows/docker-push-release.yml index 2bd17016..ee60e724 100644 --- a/.github/workflows/docker-push-release.yml +++ b/.github/workflows/docker-push-release.yml @@ -91,5 +91,5 @@ jobs: run: | # Combine the architecture-specific images into a single manifest docker buildx imagetools create -t ${{ steps.meta.outputs.tags }} \ - ${{ env.DOCKER_IMAGE }}:arm64 \ - ${{ env.DOCKER_IMAGE }}:amd64 + ${{ env.DOCKER_IMAGE }}:${{ steps.meta.outputs.tags }}-arm64 \ + ${{ env.DOCKER_IMAGE }}:${{ steps.meta.outputs.tags }}-amd64