We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63722ba commit b04745dCopy full SHA for b04745d
1 file changed
.github/workflows/docker-3.0.yml
@@ -34,11 +34,11 @@ jobs:
34
id: docker_meta
35
uses: docker/metadata-action@v3
36
with:
37
- images: ${{ env.REPOSITORY }}
+ images: ${{ github.repository }}
38
labels: |
39
org.opencontainers.image.version=${{ env.BUILD_VERSION }}
40
org.opencontainers.image.revision=${{ github.sha }}
41
- org.opencontainers.image.title=${{ env.REPOSITORY }}
+ org.opencontainers.image.title=${{ github.repository }}
42
43
- name: GitHub login
44
if: ${{ github.event_name != 'pull_request' }}
@@ -60,4 +60,4 @@ jobs:
60
cache-to: type=gha, scope=${{ github.workflow }}
61
labels: ${{ steps.docker_meta.outputs.labels }}
62
tags: |
63
- ghcr.io/${{ env.REPOSITORY }}:${{ env.BUILD_VERSION }}
+ ghcr.io/${{ github.repository }}:${{ env.BUILD_VERSION }}
0 commit comments