We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a701a97 commit ec52609Copy full SHA for ec52609
1 file changed
.github/workflows/cd.yaml
@@ -21,10 +21,12 @@ jobs:
21
22
- name: Build Docker image
23
run: |
24
- IMAGE_NAME=ghcr.io/${{ github.repository }}:latest
+ REPO_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
25
+ IMAGE_NAME=ghcr.io/$REPO_NAME:latest
26
docker build -t $IMAGE_NAME .
27
28
- name: Push Docker image to GitHub Container Registry
29
30
31
32
docker push $IMAGE_NAME
0 commit comments