Skip to content

Commit e24e58c

Browse files
committed
chore: fixed lowercase issue in yml file
1 parent f4e1f09 commit e24e58c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build-and-push:
11-
runs-on: ubuntu-latest # Use a standard GitHub-hosted runner
11+
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read
1414
packages: write # Give the job permission to write to GHCR
@@ -31,5 +31,5 @@ jobs:
3131
file: ./Dockerfile
3232
push: true # Push the image after building
3333
tags: |
34-
ghcr.io/${{ github.repository }}:latest
35-
ghcr.io/${{ github.repository }}:${{ github.sha }}
34+
ghcr.io/${{ toLower(github.repository) }}:latest
35+
ghcr.io/${{ toLower(github.repository) }}:${{ github.sha }}

0 commit comments

Comments
 (0)