Skip to content

Commit

Permalink
Fix: lowercase username
Browse files Browse the repository at this point in the history
  • Loading branch information
ortanaV2 authored Nov 17, 2024
1 parent fb1ab0e commit f62c8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Build Docker image
run: docker build -t ghcr.io/${{ github.actor }}/my-app:latest .
run: docker build -t ghcr.io/$(echo ${{ github.actor }} | tr '[:upper:]' '[:lower:]')/my-app:latest .

- name: Push Docker image
run: docker push ghcr.io/${{ github.actor }}/my-app:latest

0 comments on commit f62c8cd

Please sign in to comment.