Browse Source

Always publish logs and test results

pull/1018/head
Kévin Chalet 6 years ago
parent
commit
179e9b2924
  1. 2
      .github/workflows/build.yml

2
.github/workflows/build.yml

@ -59,6 +59,7 @@ jobs:
- name: Publish logs
uses: actions/upload-artifact@v1
if: ${{ always() }}
with:
name: logs-${{ matrix.os_name }}
path: ./artifacts/log/Release
@ -71,6 +72,7 @@ jobs:
- name: Publish test results
uses: actions/upload-artifact@v1
if: ${{ always() }}
with:
name: testresults-${{ matrix.os_name }}
path: ./artifacts/TestResults/Release

Loading…
Cancel
Save