We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3575b5c commit 15e9de9Copy full SHA for 15e9de9
.github/workflows/build-and-push.yml
@@ -121,8 +121,9 @@ jobs:
121
IS_PRERELEASE="${{ env.IS_PRERELEASE }}"
122
SHOULD_PUSH="${{ env.SHOULD_PUSH }}"
123
124
- DOCKERHUB_REPO="${{ github.repository }}"
125
- GHCR_REPO="ghcr.io/${{ github.repository }}"
+ REPO_NAME="${{ github.repository }}"
+ DOCKERHUB_REPO="${REPO_NAME,,}"
126
+ GHCR_REPO="ghcr.io/${REPO_NAME,,}"
127
128
TAGS="$DOCKERHUB_REPO:$CONTAINER_VERSION,$GHCR_REPO:$CONTAINER_VERSION"
129
0 commit comments