From e4cc783590a74d1cc1954955ccbc8cd8d7d45525 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Thu, 17 Oct 2024 14:55:41 +0200 Subject: [PATCH] Surface the release RTD link to GHA workflow summary page This will additionally display the updated text on pages like https://github.com/avocado-framework/avocado/actions/runs/11215982471. Here's an example of how job summaries are displayed: https://github.com/ansible/awx-plugins/actions/runs/10793404435#summary-29935289633. Signed-Off-By: Sviatoslav Sydorenko --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index abcb5f9eae..5b5bf3847c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,10 @@ jobs: - name: Build documentation readthedocs run: | make -f Makefile.gh build-update-readthedocs - - run: echo "In a few minutes the release documentation will be available in https://${{ github.event.inputs.rtd_project }}.readthedocs.io/en/${{ github.event.inputs.version }}/" + - run: >- + echo In a few minutes the release documentation will be available at + https://${{ github.event.inputs.rtd_project }}.readthedocs.io/en/${{ github.event.inputs.version }}/ + | tee -a "${GITHUB_STEP_SUMMARY}" publish-to-pypi: name: Publish Avocado to PyPI