Skip to content

Commit

Permalink
Docker: Fix issue with image name for GitHub packages
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinSRG committed Sep 23, 2023
1 parent aadb4ad commit b844ae3
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 @@ -48,14 +48,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

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

- name: Tag latest (GitHub Packages)
run: docker tag asanrom/pmv:latest ghcr.io/agustinsrg/pmv:latest
run: docker tag asanrom/pmv:latest ghcr.io/agustinsrg/personalmediavault:latest

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

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

0 comments on commit b844ae3

Please sign in to comment.