From 7cee9b475df0e3757604900b1317d294ca1409f4 Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sat, 18 Jan 2025 20:50:22 +0800 Subject: [PATCH] ci: fix multi-arch image creation workflow use int128/docker-manifest-create-action to combine the images --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df513caea..33721e7af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,16 +119,16 @@ jobs: OWNER: ${{ github.repository_owner }} - name: Create and Push Multi-Architecture Image - uses: docker/manifest-action@v5 + uses: int128/docker-manifest-create-action with: - images: | + tags: | + fallenbagel/jellyseerr:develop + ghcr.io/${{ github.repository_owner }}/jellyseerr:develop + sourceas: | fallenbagel/jellyseerr:develop-linux-amd64 fallenbagel/jellyseerr:develop-linux-arm64 ghcr.io/${{ env.OWNER_LC }}/jellyseerr:develop-linux-amd64 ghcr.io/${{ env.OWNER_LC }}/jellyseerr:develop-linux-arm64 - target: | - fallenbagel/jellyseerr:develop - ghcr.io/${{ env.OWNER_LC }}/jellyseerr:develop - name: Inspect Manifest run: | docker buildx imagetools inspect fallenbagel/jellyseerr:develop