From 58cd65ffa4edd173f8fb48b1d6516cd867a0d1dd Mon Sep 17 00:00:00 2001 From: Wojtek Piotrowiak Date: Wed, 19 Jun 2024 18:15:51 +0200 Subject: [PATCH] AAE-23270 Print docker image built in GitHub summary (#655) Co-authored-by: Anahide Tchertchian <608958+atchertchian@users.noreply.github.com> --- .github/actions/docker-build-image/action.yml | 20 +++++++++++++++++++ version.txt | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/actions/docker-build-image/action.yml b/.github/actions/docker-build-image/action.yml index ef32f55f3..f730fe9a0 100644 --- a/.github/actions/docker-build-image/action.yml +++ b/.github/actions/docker-build-image/action.yml @@ -209,3 +209,23 @@ runs: labels: ${{ steps.meta.outputs.labels }} push: true provenance: false + + - name: Print tags + if: env.PUSH_IMAGE == 'true' + shell: bash + run: | + { + echo "### :rocket: Docker image built" + echo "Quay:" + echo "\`\`\`\`" + echo "quay.io/alfresco/${{ env.IMAGE_NAME }}" + echo " \`\`\`\`" + echo "GHCR:" + echo "\`\`\`\`" + echo "ghcr.io/alfresco/${{ env.IMAGE_NAME }}" + echo "\`\`\`\`" + echo "AWS ECR:" + echo "\`\`\`\`" + echo "${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}" + echo "\`\`\`\`" + } >> $GITHUB_STEP_SUMMARY diff --git a/version.txt b/version.txt index 0203086eb..c33d8f774 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v5.29.1 +v5.29.2