We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e1f09 commit e24e58cCopy full SHA for e24e58c
.github/workflows/build-image.yml
@@ -8,7 +8,7 @@ on:
8
9
jobs:
10
build-and-push:
11
- runs-on: ubuntu-latest # Use a standard GitHub-hosted runner
+ runs-on: ubuntu-latest
12
permissions:
13
contents: read
14
packages: write # Give the job permission to write to GHCR
@@ -31,5 +31,5 @@ jobs:
31
file: ./Dockerfile
32
push: true # Push the image after building
33
tags: |
34
- ghcr.io/${{ github.repository }}:latest
35
- ghcr.io/${{ github.repository }}:${{ github.sha }}
+ ghcr.io/${{ toLower(github.repository) }}:latest
+ ghcr.io/${{ toLower(github.repository) }}:${{ github.sha }}
0 commit comments