Skip to content

Commit

Permalink
81: archive results also if cancelled FIXED
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed May 12, 2021
1 parent b69bf3d commit 0564e8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive Test Results
uses: actions/upload-artifact@v2
if: ${{ failure() }} || ${{ cancelled() }}
if: ${{ failure() || cancelled() }}
with:
name: test-results-${{ runner.os }}
path: '**/*.tests/target'
- name: Archive UI Tests Screenshots
uses: actions/upload-artifact@v2
if: ${{ failure() }} || ${{ cancelled() }}
if: ${{ failure() || cancelled() }}
with:
name: screenshots-${{ runner.os }}
path: '**/*.tests/screenshots'
4 changes: 2 additions & 2 deletions .github/workflows/windows-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
run: mvn '-Dtycho.disableP2Mirrors=true' verify
- name: Archive Test Results
uses: actions/upload-artifact@v2
if: ${{ failure() }} || ${{ cancelled() }}
if: ${{ failure() || cancelled() }}
with:
name: test-results-${{ runner.os }}
path: '**/*.tests/target'
- name: Archive UI Tests Screenshots
uses: actions/upload-artifact@v2
if: ${{ failure() }} || ${{ cancelled() }}
if: ${{ failure() || cancelled() }}
with:
name: screenshots-${{ runner.os }}
path: '**/*.tests/screenshots'

0 comments on commit 0564e8f

Please sign in to comment.