Skip to content

Commit

Permalink
build: corrected the image name to lowercase to avoid errors in build
Browse files Browse the repository at this point in the history
  • Loading branch information
novoj authored Feb 14, 2024
1 parent b805fe5 commit 1440bbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ permissions:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
IMAGE_NAME: ${{ github.repository | lower }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
Expand Down Expand Up @@ -69,4 +69,4 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: latest
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.release_version.outputs.version }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest

0 comments on commit 1440bbb

Please sign in to comment.