From eed08ca1d757efc2fbe784131dc88d7c095ab5d5 Mon Sep 17 00:00:00 2001 From: zinobias Date: Mon, 15 May 2023 16:38:04 +0200 Subject: [PATCH] webvm deployment workflow now displays final url in a cleaner way. --- .github/workflows/build_and_deploy_ext2_img.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_deploy_ext2_img.yml b/.github/workflows/build_and_deploy_ext2_img.yml index a3a79b5..890b594 100644 --- a/.github/workflows/build_and_deploy_ext2_img.yml +++ b/.github/workflows/build_and_deploy_ext2_img.yml @@ -177,7 +177,9 @@ jobs: - name: Deploy GitHub Pages site id: deployment uses: actions/deploy-pages@v2.0.0 - - name: Print final url + + - name: Print final url as job summary run: | - echo "::notice::URL to the image ${{ steps.deployment.outputs.page_url }}${{ github.event.inputs.IMAGE_NAME }}" - echo "::notice::URL to the Github pages site ${{ steps.deployment.outputs.page_url }}" + echo "| Final URL to the Github pages site |" >> $GITHUB_STEP_SUMMARY + echo "| ---------------------------------- |" >> $GITHUB_STEP_SUMMARY + echo "| ${{ steps.deployment.outputs.page_url }} |" >> $GITHUB_STEP_SUMMARY