From 30ceb97b8dbfb3fe9e6f7a2c7b8034484f1cb01f Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Fri, 30 Jul 2021 11:34:41 +0200 Subject: [PATCH] Fix the adress --- .github/workflows/build_doc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 25d9ef050d7..974d8e55f2f 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -118,7 +118,7 @@ jobs: if: ${{ success() && steps.get_round.outputs.result != 'stop' }} with: script: | - const tmp_round=${{ steps.get_round.outputs.result }}; + const tmp_round = "${{ steps.get_round.outputs.result }}"; const id = tmp_round.indexOf(":"); const round = tmp_round.substring(0,id); const address = "The documentation is built. It will be available, after a few minutes, here : https://cgal.github.io/${{ steps.get_pr_number.outputs.result }}/"+round+"/Manual/index.html"