From e3712550779c3cc475f6fe1dbbc416b96c31d415 Mon Sep 17 00:00:00 2001 From: Danila Danko Date: Thu, 21 Mar 2024 23:06:39 +0300 Subject: [PATCH] feat(ci, report): generate a job summary --- .github/workflows/ghc.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ghc.yml b/.github/workflows/ghc.yml index 4b8240bac..6975f4c7c 100644 --- a/.github/workflows/ghc.yml +++ b/.github/workflows/ghc.yml @@ -75,6 +75,13 @@ jobs: shell: bash run: ./scripts/pipeline.sh + - name: Report results + shell: bash + run: | + printf "
Report" >> $GITHUB_STEP_SUMMARY + cat report/index.html >> $GITHUB_STEP_SUMMARY + printf "
" >> $GITHUB_STEP_SUMMARY + docs: needs: pipeline if: ${{ github.ref_name == 'master' }}