We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c968e commit 78dba3bCopy full SHA for 78dba3b
.github/workflows/update-manifest.yml
@@ -53,7 +53,11 @@ jobs:
53
echo "🎯 Targeting overlay: ${OVERLAY}"
54
cd cso2/k8s/overlays/${OVERLAY}
55
56
- NEW_IMAGE="ghcr.io/${{ github.repository_owner }}/${SERVICE_NAME_GHCR}:${{ steps.info.outputs.branch }}-${{ steps.info.outputs.sha }}"
+ # 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 }}"
61
62
echo "🔄 Updating ${SERVICE_NAME_KUSTOMIZE} to use image: ${NEW_IMAGE}"
63
0 commit comments