now this will HOPEFULLY work

This commit is contained in:
AwesomeQubic 2024-01-18 15:42:43 +01:00
parent d016c89ce2
commit 8f14c31d41

View file

@ -83,7 +83,7 @@ jobs:
- name: Push docker image to DockerHub - name: Push docker image to DockerHub
run: | run: |
export REPO_LOWER_CASE = echo "$REPOSITORY" | tr '[:upper:]' '[:lower:]' export REPO_LOWER_CASE=$(echo "$REPOSITORY" | tr '[:upper:]' '[:lower:]')
docker load < result docker load < result
docker tag conduwuit:latest $REPO_LOWER_CASE:${{ env.TAG }} docker tag conduwuit:latest $REPO_LOWER_CASE:${{ env.TAG }}
docker push $REPO_LOWER_CASE:${{ env.TAG }} docker push $REPO_LOWER_CASE:${{ env.TAG }}