From 159c60117d0337c3ce15c5c8ca7ab83bfe3ca863 Mon Sep 17 00:00:00 2001 From: Milap Sheth Date: Sun, 26 May 2024 17:39:22 -0400 Subject: [PATCH] fix output saving --- .github/workflows/codecov.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index 1d39ce37..f7d335de 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -65,7 +65,7 @@ jobs: - name: Display coverage report id: coverage - run: cat .coverage.info + run: echo "summary=$(cat .coverage.info)" >> $GITHUB_OUTPUT - name: Find Code Coverage comment uses: peter-evans/find-comment@v3 @@ -87,7 +87,7 @@ jobs: Click to see the code coverage report ``` - ${{ steps.coverage.outputs.cmd_output }} + ${{ steps.coverage.outputs.summary }} ``` edit-mode: replace