From a8bb6736c6731ba920a24deef870bfa3c41d0733 Mon Sep 17 00:00:00 2001 From: Leon Wright Date: Thu, 19 Sep 2024 11:34:07 +0800 Subject: [PATCH] chore: Re-enable coverage --- .github/workflows/coverage-report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage-report.yml b/.github/workflows/coverage-report.yml index 05320e6..b474c9d 100644 --- a/.github/workflows/coverage-report.yml +++ b/.github/workflows/coverage-report.yml @@ -15,7 +15,7 @@ permissions: jobs: coverage-report: runs-on: ubuntu-latest - if: ${{ false && github.event.workflow_run.conclusion == 'success' }} + if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - uses: actions/download-artifact@v4 with: @@ -23,7 +23,7 @@ jobs: run-id: ${{ github.event.workflow_run.id }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: Get Cover - uses: techman83/coverage@feat/workflow_run + uses: techman83/coverage@demo/workflow_run with: coverageFile: coverage.xml token: ${{ secrets.GITHUB_TOKEN }}