From 179e9b2924f0d73af4fbe2940151fcc6b9b47075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 7 Jul 2020 19:04:21 +0200 Subject: [PATCH] Always publish logs and test results --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51f53a6a..44565747 100644 --- a/.github/workflows/build.yml +++ b/.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