Skip to content

Commit 51b2590

Browse files
author
Alec Thomson
committed
Repo
1 parent 8b6ed7c commit 51b2590

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: docker/metadata-action@v5
5050
with:
5151
images: |
52-
${{ env.REGISTRY }}/$REPO/${{ matrix.name }}
52+
${{ env.REGISTRY }}/${{ env.REPO }}/${{ matrix.name }}
5353
tags: |
5454
type=raw,value=${{ env.TAG_SUFFIX }}
5555
@@ -62,18 +62,18 @@ jobs:
6262
context: .
6363
file: Dockerfile-${{ matrix.name }} # Builds the correct Dockerfile
6464
push: true
65-
tags: ${{ env.REGISTRY }}/$REPO/${{ matrix.name }}:${{ env.TAG_SUFFIX }} # Explicitly set tag
65+
tags: ${{ env.REGISTRY }}/${{ env.REPO }}/${{ matrix.name }}:${{ env.TAG_SUFFIX }} # Explicitly set tag
6666
labels: ${{ steps.meta.outputs.labels }}
6767
cache-from: type=gha
6868
cache-to: type=gha,mode=max
6969

7070
# - name: Debug build output
7171
# run: |
72-
# docker images ${{ env.REGISTRY }}/$REPO/${{ matrix.name }}
72+
# docker images ${{ env.REGISTRY }}/${{ env.REPO }}/${{ matrix.name }}
7373

7474
# - name: Debug attestation input
7575
# run: |
76-
# echo "Subject name: ${{ env.REGISTRY }}/$REPO/${{ matrix.name }}:${{ env.TAG_SUFFIX }}"
76+
# echo "Subject name: ${{ env.REGISTRY }}/${{ env.REPO }}/${{ matrix.name }}:${{ env.TAG_SUFFIX }}"
7777
# echo "Subject digest: ${{ steps.push.outputs.digest }}"
7878

7979
# - name: Generate artifact attestation

0 commit comments

Comments
 (0)