Skip to content

Commit

Permalink
ci(build_publish): fix image name
Browse files Browse the repository at this point in the history
Repository name must be lowercase.
  • Loading branch information
nitaibezerra authored and edulauer committed Mar 22, 2023
1 parent 3c00839 commit 1f334b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:${{ env.TAG_NAME }}
tags: ghcr.io/${{ github.repository_owner }}/ro-dou:${{ env.TAG_NAME }}

- name: Build and push Docker image with latest tag
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:latest
tags: ghcr.io/${{ github.repository_owner }}/ro-dou:latest

0 comments on commit 1f334b0

Please sign in to comment.