Skip to content

Commit

Permalink
test - hibernate-orm-test archive steps to run even if prior steps fail
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronchung-bitquill committed Feb 16, 2024
1 parent bba12f0 commit 307e8f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-hibernate-orm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ jobs:
run: |
./gradlew --no-parallel --no-daemon test-hibernate-only
- name: 'Archive junit results'
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false'}}
if: ${{ steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false' && !cancelled()}}
uses: actions/upload-artifact@v4
with:
name: junit-report
path: ./wrapper/build/test-results
retention-days: 5
- name: 'Archive html summary report'
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false'}}
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false' && !cancelled()}}
uses: actions/upload-artifact@v4
with:
name: html-summary-report
Expand Down

0 comments on commit 307e8f5

Please sign in to comment.