Skip to content

Commit

Permalink
AAE-26244 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-piotrowiak committed Oct 30, 2024
1 parent 50d4f50 commit d227213
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/actions/docker-build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ inputs:
outputs:
ecr-docker-image-url:
description: The ECR docker image URL
value: ${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}"
value: ${{ steps.set-ecr-docker-image-url.outputs.ecr-docker-image-url }}

runs:
using: composite
Expand Down Expand Up @@ -234,3 +234,9 @@ runs:
echo "${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}"
echo "\`\`\`\`"
} >> $GITHUB_STEP_SUMMARY
- name: set ecr-docker-image-url
id: set-ecr-docker-image-url
if: env.PUSH_IMAGE == 'true'
shell: bash
run: echo "ecr-docker-image-url=${steps.login-ecr.outputs.registry}/${env.IMAGE_NAME}:${steps.build-and-push.outputs.digest}" >> $GITHUB_ENV

0 comments on commit d227213

Please sign in to comment.