Skip to content

Commit d804990

Browse files
committed
fix: correct image tag format in GitHub Actions workflow
1 parent 9e67505 commit d804990

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-publish.yml

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

1616
env:
1717
REGISTRY: ghcr.io
18-
IMAGE_NAME: ${{ github.repository }}
18+
IMAGE_NAME: opensource-digwebinterface
1919

2020
jobs:
2121
build-and-push:
@@ -43,7 +43,7 @@ jobs:
4343
id: meta
4444
uses: docker/metadata-action@v5
4545
with:
46-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
46+
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
4747
tags: |
4848
type=ref,event=branch
4949
type=ref,event=pr
@@ -67,6 +67,6 @@ jobs:
6767
if: github.event_name != 'pull_request'
6868
uses: actions/attest-build-provenance@v1
6969
with:
70-
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
70+
subject-name: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
7171
subject-digest: ${{ steps.build.outputs.digest }}
7272
push-to-registry: true

0 commit comments

Comments
 (0)