Skip to content

Commit 78dba3b

Browse files
committed
fix: Ensure Docker compatibility by converting repo owner to lowercase in image tag
1 parent d5c968e commit 78dba3b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/update-manifest.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ jobs:
5353
echo "🎯 Targeting overlay: ${OVERLAY}"
5454
cd cso2/k8s/overlays/${OVERLAY}
5555
56-
NEW_IMAGE="ghcr.io/${{ github.repository_owner }}/${SERVICE_NAME_GHCR}:${{ steps.info.outputs.branch }}-${{ steps.info.outputs.sha }}"
56+
# Force lowercase repo owner for Docker compatibility
57+
OWNER="${{ github.repository_owner }}"
58+
OWNER="${OWNER,,}"
59+
60+
NEW_IMAGE="ghcr.io/${OWNER}/${SERVICE_NAME_GHCR}:${{ steps.info.outputs.branch }}-${{ steps.info.outputs.sha }}"
5761
5862
echo "🔄 Updating ${SERVICE_NAME_KUSTOMIZE} to use image: ${NEW_IMAGE}"
5963

0 commit comments

Comments
 (0)