From e995087971c61c56a6e34738910897c7b0a86890 Mon Sep 17 00:00:00 2001 From: Jamie Date: Tue, 28 Sep 2021 18:43:53 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38ef3862f..9ecb244e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,14 +45,14 @@ jobs: - name: Run Unit Tests run: | - cd src/Ombi + cd src dotnet test --logger trx --results-directory "TestResults" - name: Upload dotnet test results uses: actions/upload-artifact@v2 with: name: dotnet-results-* - path: TestResults + path: src/TestResults # Use always() to always run this step to publish test results when there are test failures if: ${{ always() }}