We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e67505 commit d804990Copy full SHA for d804990
1 file changed
.github/workflows/docker-publish.yml
@@ -15,7 +15,7 @@ on:
15
16
env:
17
REGISTRY: ghcr.io
18
- IMAGE_NAME: ${{ github.repository }}
+ IMAGE_NAME: opensource-digwebinterface
19
20
jobs:
21
build-and-push:
@@ -43,7 +43,7 @@ jobs:
43
id: meta
44
uses: docker/metadata-action@v5
45
with:
46
- images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
47
tags: |
48
type=ref,event=branch
49
type=ref,event=pr
@@ -67,6 +67,6 @@ jobs:
67
if: github.event_name != 'pull_request'
68
uses: actions/attest-build-provenance@v1
69
70
- subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ subject-name: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
71
subject-digest: ${{ steps.build.outputs.digest }}
72
push-to-registry: true
0 commit comments