From d016c89ce218f2535a97fac7edda744ab454a4a0 Mon Sep 17 00:00:00 2001 From: AwesomeQubic Date: Thu, 18 Jan 2024 15:37:13 +0100 Subject: [PATCH] this will hopefully work --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24bfb21a..ca296aab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,7 @@ jobs: - name: Push docker image to DockerHub run: | + export REPO_LOWER_CASE = echo "$REPOSITORY" | tr '[:upper:]' '[:lower:]' docker load < result - docker tag conduwuit:latest ${{ env.REPOSITORY }}:${{ env.TAG }} - docker push ${{ env.REPOSITORY }}:${{ env.TAG }} \ No newline at end of file + docker tag conduwuit:latest $REPO_LOWER_CASE:${{ env.TAG }} + docker push $REPO_LOWER_CASE:${{ env.TAG }} \ No newline at end of file