From 93d2e26ae902a5a4d4ea0755a249fbfa18be9046 Mon Sep 17 00:00:00 2001 From: Fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sat, 18 Jan 2025 19:42:05 +0800 Subject: [PATCH] ci: sanitise container tag (#1279) * ci: sanitise container tag Tags cant container `/` so this should sanitise them * ci: use simple case owner name --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d470874c..cde6ff0ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,8 +87,8 @@ jobs: build-args: | COMMIT_TAG=${{ github.sha }} tags: | - fallenbagel/jellyseerr:develop-${{ matrix.platform }} - ghcr.io/${{ env.OWNER_LC }}/jellyseerr:develop-${{ matrix.platform }} + fallenbagel/jellyseerr:develop-${{ matrix.platform // '/' / '-' }} + ghcr.io/${{ env.OWNER_LC }}/jellyseerr:develop-${{ matrix.platform // '/' / '-' }} cache-from: type=gha,scope=${{ matrix.platform }} cache-to: type=gha,mode=max,scope=${{ matrix.platform }} provenance: false @@ -110,11 +110,11 @@ jobs: ghcr.io/${{ github.repository_owner }}/jellyseerr:develop-linux-arm64 target: | fallenbagel/jellyseerr:develop - ghcr.io/${{ github.repository_owner }}/jellyseerr:develop + ghcr.io/fallenbagel/jellyseerr:develop - name: Inspect Manifest run: | docker buildx imagetools inspect fallenbagel/jellyseerr:develop - docker buildx imagetools inspect ghcr.io/${{ github.repository_owner }}/jellyseerr:develop + docker buildx imagetools inspect ghcr.io/fallenbagel/jellyseerr:develop discord: name: Send Discord Notification