From d7b32fd100137ddde257de5cba765d127852ca3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Wed, 18 Oct 2023 11:31:23 +0200 Subject: [PATCH] Fix path to test results in processing steps (#2837) Working-directory is relevant only for run steps, the other steps need full path relative to the repository root. --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1867142b9..c9f8d9979 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -73,7 +73,7 @@ jobs: with: name: logs path: | - lg_logs/* + tests/lg_logs/* - name: Archive JUnit reports uses: actions/upload-artifact@v3 @@ -81,12 +81,12 @@ jobs: with: name: junit_reports path: | - junit_reports/*.xml + tests/junit_reports/*.xml - name: Publish test report uses: mikepenz/action-junit-report@v4 if: always() with: - report_paths: 'junit_reports/*.xml' + report_paths: 'tests/junit_reports/*.xml' annotate_only: true detailed_summary: true