We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3925c4e commit 575dc9dCopy full SHA for 575dc9d
1 file changed
.github/workflows/build-image.yml
@@ -111,10 +111,13 @@ jobs:
111
id: build
112
env:
113
IMAGE_NAME: public.ecr.aws/x7l7e7v1/${{ matrix.name }}
114
- GHCR_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}
115
RELEASE_VERSION: ${{ needs.check-release-version.outputs.release_version }}
116
HAS_RELEASE: ${{ needs.check-release-version.outputs.has_release }}
117
run: |
+ # Convert repository owner to lowercase for Docker image name
118
+ REPO_OWNER_LOWER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
119
+ GHCR_IMAGE_NAME="ghcr.io/${REPO_OWNER_LOWER}/${{ matrix.name }}"
120
+
121
echo "🔧 Building multi-arch image for linux/amd64,linux/arm64"
122
123
if [ "$HAS_RELEASE" == "true" ] && [ -n "$RELEASE_VERSION" ]; then
0 commit comments