Skip to content

Commit a125b5d

Browse files
committed
fix env var
1 parent 78e0348 commit a125b5d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/images-pull-request.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
push: true
7575
platforms: linux/amd64
7676
tags: |
77-
${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }}-amd64
77+
${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }}-amd64
7878
cache-from: type=gha
7979
cache-to: type=gha,mode=max
8080

@@ -114,7 +114,7 @@ jobs:
114114
push: true
115115
platforms: linux/arm64
116116
tags: |
117-
${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }}-arm64
117+
${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }}-arm64
118118
cache-from: type=gha
119119
cache-to: type=gha,mode=max
120120

@@ -142,8 +142,8 @@ jobs:
142142

143143
- name: Create and Push Multi-Architecture Manifest
144144
run: |
145-
docker manifest create ${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }} \
146-
--amend ${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }}-amd64 \
147-
--amend ${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }}-arm64
145+
docker manifest create ${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }} \
146+
--amend ${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }}-amd64 \
147+
--amend ${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }}-arm64
148148
149-
docker manifest push ${{ steps.login-ecr.outputs.registry }}/${ env.REGISTRY_ALIAS }/${{ matrix.image }}:sha-${{ github.sha }}
149+
docker manifest push ${{ steps.login-ecr.outputs.registry }}/${{ env.REGISTRY_ALIAS }}/${{ matrix.image }}:sha-${{ github.sha }}

0 commit comments

Comments
 (0)