From 305e8674e271a172a71dee37dcfc5a182ed3cca9 Mon Sep 17 00:00:00 2001 From: "alex.stanfield" <13949480+chaptersix@users.noreply.github.com> Date: Fri, 21 Nov 2025 08:02:54 -0600 Subject: [PATCH] Fix IMAGE_REPO to include ghcr.io registry prefix for forks The metadata step was only setting image_repo to the repository owner (e.g., 'chaptersix') instead of the full registry path ('ghcr.io/chaptersix'). This caused Docker to try pushing to Docker Hub instead of GHCR. --- .github/workflows/build-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index d6fb864ca..61a4194d9 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -112,7 +112,7 @@ jobs: if [[ "$REPO_OWNER" == "temporalio" ]]; then echo "image_repo=temporalio" >> $GITHUB_OUTPUT else - echo "image_repo=$REPO_OWNER" >> $GITHUB_OUTPUT + echo "image_repo=ghcr.io/$REPO_OWNER" >> $GITHUB_OUTPUT fi - name: Check if release is latest