Make an artifact from failed files on failure

This commit is contained in:
Timothy Baldridge 2021-10-25 06:35:05 -06:00
parent 433e989049
commit 2561687976

View File

@ -45,6 +45,13 @@ jobs:
- name: Test
run: dotnet test --no-restore --filter "Category!=FlakeyNetwork"
- name: Upload Test Folder on Failure
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: Failed Files
path: ./
publish:
name: Publish Projects
runs-on: ubuntu-latest