Skip to content

Commit

Permalink
fix(ci): Update docker image tags in GitHub workflows
Browse files Browse the repository at this point in the history
The actual repository owner was hardcoded as 'b-urb' for image tags in 'push.yml', 'release.yml' and 'release-prod.yml'. The repository owner part in the docker image tags should not be hardcoded, but we have to keep this for now to ensure workflow correctness.
  • Loading branch information
Björn Urban committed Jun 17, 2024
1 parent 7262c51 commit 0576045
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner.toLowerCase() }}/doclytics:${{ env.BRANCH_NAME }}
tags: ghcr.io/b-urb/doclytics:${{ env.BRANCH_NAME }}
platforms: linux/amd64,linux/arm64
release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ jobs:
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner.toLowerCase() }}/doclytics:${{ env.BRANCH_NAME }}
tags: ghcr.io/b-urb/doclytics:${{ env.BRANCH_NAME }}
platforms: linux/amd64,linux/arm64

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ jobs:
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner.toLowerCase() }}/doclytics:${{ env.BRANCH_NAME }}
tags: ghcr.io/b-urb/doclytics:${{ env.BRANCH_NAME }}
platforms: linux/amd64,linux/arm64

0 comments on commit 0576045

Please sign in to comment.