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() }}