From ce5b2dbec50c0a1a8f021f4153a5c0fced3d12c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Jul 2026 21:52:33 +0000 Subject: [PATCH 1/3] Initial plan From 7bfd7235156cb0bd51c11643a02e391bcb295b17 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Jul 2026 21:54:43 +0000 Subject: [PATCH 2/3] Fix Docker image tags to use lowercase GHCR repository path --- .github/workflows/ci-cd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 995c6d7..b2c8830 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -99,8 +99,8 @@ jobs: file: ./mohawk-server/Dockerfile push: true tags: | - ghcr.io/${{ github.repository }}/mohawk-server:latest - ghcr.io/${{ github.repository }}/mohawk-server:${{ github.sha }} + ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server:latest + ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max @@ -111,8 +111,8 @@ jobs: file: ./mohawk-server/Dockerfile.cuda push: true tags: | - ghcr.io/${{ github.repository }}/mohawk-server-cuda:latest - ghcr.io/${{ github.repository }}/mohawk-server-cuda:${{ github.sha }} + ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server-cuda:latest + ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server-cuda:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max From f899109f42e729400defc764b3d454d14f516018 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Jul 2026 21:55:31 +0000 Subject: [PATCH 3/3] Use lowercase computed GHCR repository for Docker tags --- .github/workflows/ci-cd.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b2c8830..633a825 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -91,6 +91,9 @@ jobs: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + + - name: Normalize image repository path + run: echo "IMAGE_REPO=ghcr.io/${GITHUB_REPOSITORY,,}" >> "$GITHUB_ENV" - name: Build and push CPU image uses: docker/build-push-action@v5 @@ -99,8 +102,8 @@ jobs: file: ./mohawk-server/Dockerfile push: true tags: | - ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server:latest - ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server:${{ github.sha }} + ${{ env.IMAGE_REPO }}/mohawk-server:latest + ${{ env.IMAGE_REPO }}/mohawk-server:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max @@ -111,8 +114,8 @@ jobs: file: ./mohawk-server/Dockerfile.cuda push: true tags: | - ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server-cuda:latest - ghcr.io/rwilliamspbg-ops/mohawk-inference-engine/mohawk-server-cuda:${{ github.sha }} + ${{ env.IMAGE_REPO }}/mohawk-server-cuda:latest + ${{ env.IMAGE_REPO }}/mohawk-server-cuda:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max