Skip to content

Commit 704f072

Browse files
committed
Fix docker push by lowercasing repo name
1 parent a57602d commit 704f072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Push Docker image
7777
if: success() && github.event_name != 'pull_request'
78-
run: docker push --all-tags ghcr.io/${{ github.repository }}
78+
run: docker push --all-tags ghcr.io/${GITHUB_REPOSITORY,,}
7979

8080
- name: Output image digest
8181
if: success() && github.event_name != 'pull_request'

0 commit comments

Comments
 (0)