Skip to content

Commit b3cfbbc

Browse files
committed
fix env expression
1 parent a9b4420 commit b3cfbbc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-build-web.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
file: apps/web/Dockerfile
5757
platforms: linux/${{ matrix.platform }}
5858
push: true
59-
outputs: type=image,name=ghcr.io/$REPOSITORY_OWNER/cap-web,push-by-digest=true
59+
outputs: type=image,name=ghcr.io/${{ env.REPOSITORY_OWNER }}/cap-web,push-by-digest=true
6060
cache-from: type=gha,scope=buildx-${{ matrix.platform }}
6161
cache-to: type=gha,mode=max,scope=buildx-${{ matrix.platform }}
6262

@@ -106,5 +106,5 @@ jobs:
106106
107107
- name: Create Image Manifest
108108
run: |
109-
docker buildx imagetools create -t ghcr.io/$REPOSITORY_OWNER/cap-web:${{ inputs.tag || 'latest' }} \
110-
$(find /tmp/digests -type f -not -path "*/\.*" -exec basename {} \; | xargs -I {} echo "ghcr.io/$REPOSITORY_OWNER/cap-web@sha256:{}")
109+
docker buildx imagetools create -t ghcr.io/${{ env.REPOSITORY_OWNER }}/cap-web:${{ inputs.tag || 'latest' }} \
110+
$(find /tmp/digests -type f -not -path "*/\.*" -exec basename {} \; | xargs -I {} echo "ghcr.io/${{ env.REPOSITORY_OWNER }}/cap-web@sha256:{}")

0 commit comments

Comments
 (0)