fixed case isse

This commit is contained in:
dekzter 2025-03-20 17:42:57 -04:00
parent a5b56392c3
commit d51f6449d0

View file

@ -36,6 +36,9 @@ jobs:
echo "TAG=dev" >> $GITHUB_ENV
fi
- name: Convert repository name to lowercase
run: echo "REPO_NAME=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
@ -43,5 +46,5 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository }}:${{ env.TAG }}
ghcr.io/${{ github.repository }}:${{ github.sha }}
ghcr.io/${{ env.REPO_NAME }}:${{ env.TAG }}
ghcr.io/${{ env.REPO_NAME }}:${{ github.sha }}