Skip to content

Commit

Permalink
Merge pull request #9 from milkyway-technology/develop
Browse files Browse the repository at this point in the history
ci: fix images url for continuous deployment and continuous integrati…
  • Loading branch information
lcarneli committed Mar 9, 2024
2 parents 8b12bad + f01b31e commit db3d9e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: docker/metadata-action@v5
id: metadata
with:
images: ${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY_URL }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=match,pattern=v(.*),group=1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: docker/metadata-action@v5
id: metadata
with:
images: ${{ env.REGISTRY_URL }}/${{ github.repository }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY_URL }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}

- name: Build Docker images
uses: docker/build-push-action@v5
Expand Down

0 comments on commit db3d9e6

Please sign in to comment.