Skip to content

Commit 39f1e70

Browse files
authored
Set lowercased image name in Docker publish workflow
Add step to set lowercased image name in environment
1 parent 3e6ebd4 commit 39f1e70

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/docker-publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ jobs:
2525
registry: ${{ env.REGISTRY }}
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.GITHUB_TOKEN }}
28-
28+
29+
- name: Set lowercased image name
30+
run: |
31+
echo "IMAGE_NAME=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
32+
2933
- name: Extract metadata
3034
id: meta
3135
uses: docker/metadata-action@v5

0 commit comments

Comments
 (0)