Skip to content

Commit

Permalink
Update main.yml to upload .received on failure (#34)
Browse files Browse the repository at this point in the history
When using Verify, when there is a failure upload the *.received.* files for comparison (in case of LF or BOM differences, not just contents).
  • Loading branch information
rjmurillo authored May 31, 2024
1 parent 9d37487 commit 741d891
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ jobs:
path: "artifacts/TestResults/**/*.trx"
if-no-files-found: error

- name: Upload Test Results
uses: actions/upload-artifact@v2
if: failure()
with:
name: verify-test-results
path: |
**/*.received.*
- name: Upload binlogs
uses: actions/upload-artifact@v4
with:
Expand All @@ -61,4 +69,4 @@ jobs:
# name: packages-${{ matrix.os }}
# path: |
# ./artifacts/package
# if-no-files-found: error
# if-no-files-found: error

0 comments on commit 741d891

Please sign in to comment.