From 5698885aafa548eafb360a19ec4224dcccb36d91 Mon Sep 17 00:00:00 2001 From: shinhyo Date: Tue, 27 Aug 2024 10:22:15 +0900 Subject: [PATCH] chore: Fix kover report path in Build workflow This commit fixes the path to kover report in the Build workflow to correctly locate the reportDebug. xml files generated by feature modules. --- .github/workflows/Build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index bb7ad22..e68bcf0 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -68,7 +68,7 @@ jobs: skip-if-no-changes: true continue-on-error: false paths: | - ${{ github.workspace }}/**/build/reports/kover/reportDebug.xml + ${{ github.workspace }}/feature/**/build/reports/kover/reportDebug.xml token: ${{ secrets.GITHUB_TOKEN }} - name: Upload lint reports