Skip to content

Commit

Permalink
Docker: Fix issue with repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinSRG committed Sep 16, 2023
1 parent baa19d9 commit b0b8f52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Tag version (GitHub Packages)
run: docker tag asanrom/showdown-chatbot:latest ghcr.io/AgustinSRG/showdown-chatbot:$GITHUB_REF_NAME
run: docker tag asanrom/showdown-chatbot:latest ghcr.io/agustinsrg/showdown-chatbot:$GITHUB_REF_NAME

- name: Tag latest (GitHub Packages)
run: docker tag asanrom/showdown-chatbot:latest ghcr.io/AgustinSRG/showdown-chatbot:latest
run: docker tag asanrom/showdown-chatbot:latest ghcr.io/agustinsrg/showdown-chatbot:latest

- name: Push the Docker image (GitHub Packages) (Current Version)
run: docker push ghcr.io/AgustinSRG/showdown-chatbot:$GITHUB_REF_NAME
run: docker push ghcr.io/agustinsrg/showdown-chatbot:$GITHUB_REF_NAME

- name: Push the Docker image (GitHub Packages) (Latest)
run: docker push ghcr.io/AgustinSRG/showdown-chatbot:latest
run: docker push ghcr.io/agustinsrg/showdown-chatbot:latest

0 comments on commit b0b8f52

Please sign in to comment.