Skip to content

Commit

Permalink
Always publish logs and test results
Browse files Browse the repository at this point in the history
Always try to publish build logs and test results, even if the build itself fails.
  • Loading branch information
martincostello committed Jul 7, 2020
1 parent 656b900 commit 5484c55
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:

- name: Publish logs
uses: actions/upload-artifact@v1
if: ${{ always() }}
with:
name: logs-${{ matrix.os_name }}
path: ./artifacts/log/Release
Expand All @@ -72,6 +73,7 @@ jobs:

- name: Publish test results
uses: actions/upload-artifact@v1
if: ${{ always() }}
with:
name: testresults-${{ matrix.os_name }}
path: ./artifacts/TestResults/Release
Expand Down

0 comments on commit 5484c55

Please sign in to comment.