Skip to content

Commit

Permalink
Collect deployables on GitHub Actions even for failing jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Mar 27, 2020
1 parent 917c049 commit 8a3f6cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-18.04
Expand Down Expand Up @@ -91,7 +92,7 @@ jobs:
with:
name: deployables
path: obj/_artifacts/deployables
if: runner.os == 'Windows'
if: always() && runner.os == 'Windows'
- name: Publish code coverage results to codecov.io
run: bash <(curl -s https://codecov.io/bash)
shell: bash
Expand Down

0 comments on commit 8a3f6cd

Please sign in to comment.