Skip to content

Commit 15e9de9

Browse files
sEpt0rrtuszik
authored andcommitted
fix: use repository_owner variable to make repo name lowercase
1 parent 3575b5c commit 15e9de9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-and-push.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ jobs:
121121
IS_PRERELEASE="${{ env.IS_PRERELEASE }}"
122122
SHOULD_PUSH="${{ env.SHOULD_PUSH }}"
123123
124-
DOCKERHUB_REPO="${{ github.repository }}"
125-
GHCR_REPO="ghcr.io/${{ github.repository }}"
124+
REPO_NAME="${{ github.repository }}"
125+
DOCKERHUB_REPO="${REPO_NAME,,}"
126+
GHCR_REPO="ghcr.io/${REPO_NAME,,}"
126127
127128
TAGS="$DOCKERHUB_REPO:$CONTAINER_VERSION,$GHCR_REPO:$CONTAINER_VERSION"
128129

0 commit comments

Comments
 (0)