Skip to content

Commit 15f89b5

Browse files
committed
fix case issue with path
1 parent 0743b8d commit 15f89b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ on:
1212

1313
env:
1414
REGISTRY: ghcr.io
15-
IMAGE_NAME: ${{ github.repository }}
1615

1716
jobs:
1817
build-and-push:
@@ -25,6 +24,9 @@ jobs:
2524
- name: Checkout repository
2625
uses: actions/checkout@v4
2726

27+
- name: Set lowercase image name
28+
run: echo "IMAGE_NAME=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
29+
2830
- name: Set up Docker Buildx
2931
uses: docker/setup-buildx-action@v3
3032

0 commit comments

Comments
 (0)