Skip to content

Commit

Permalink
Remove unnecessary reference to github.actor in Docker build and push
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinhern committed Dec 26, 2023
1 parent 5bdf0a0 commit 59133b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
password: ${{ secrets.GH_Token }}

- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/${{ github.actor }}/${{ github.repository }}:latest
run: docker build . --file Dockerfile --tag ghcr.io/${{ github.repository }}:latest

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

0 comments on commit 59133b5

Please sign in to comment.