Skip to content

Commit 307e8f5

Browse files
test - hibernate-orm-test archive steps to run even if prior steps fail
1 parent bba12f0 commit 307e8f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run-hibernate-orm-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
run: |
4646
./gradlew --no-parallel --no-daemon test-hibernate-only
4747
- name: 'Archive junit results'
48-
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false'}}
48+
if: ${{ steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false' && !cancelled()}}
4949
uses: actions/upload-artifact@v4
5050
with:
5151
name: junit-report
5252
path: ./wrapper/build/test-results
5353
retention-days: 5
5454
- name: 'Archive html summary report'
55-
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false'}}
55+
if: ${{steps.changed-files.outputs.ONLY_DOCS && steps.changed-files.outputs.ONLY_DOCS == 'false' && !cancelled()}}
5656
uses: actions/upload-artifact@v4
5757
with:
5858
name: html-summary-report

0 commit comments

Comments
 (0)