We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22bcb85 commit 89449f9Copy full SHA for 89449f9
.github/workflows/ci.yml
@@ -119,6 +119,10 @@ jobs:
119
steps:
120
- uses: actions/checkout@v4
121
122
+ - name: Lowercase repo name
123
+ id: lower
124
+ run: echo "repo=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_OUTPUT"
125
+
126
- name: Login to GHCR
127
uses: docker/login-action@v3
128
with:
@@ -132,5 +136,5 @@ jobs:
132
136
context: .
133
137
push: true
134
138
tags: |
135
- ghcr.io/${{ github.repository }}:latest
- ghcr.io/${{ github.repository }}:${{ github.sha }}
139
+ ghcr.io/${{ steps.lower.outputs.repo }}:latest
140
+ ghcr.io/${{ steps.lower.outputs.repo }}:${{ github.sha }}
0 commit comments