Skip to content

Commit

Permalink
Update failure tarball name
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox committed Aug 23, 2023
1 parent 5118422 commit 0269cbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ jobs:

- name: Collecting the test reports ..
if: failure()
run: find . '(' -name 'hs_err_*.log' -or -path '*/build/reports/tests' ')' -exec tar rf "reports-JVM-${{ matrix.java }}.tar" {} ';'
run: |
find . '(' \
-name 'hs_err_*.log' -or \
-path '*/build/reports/tests' ')' \
-exec tar rf "reports-JVM-${{ matrix.on }}-${{ matrix.java }}${{ matrix.min-java && format('-{0}', matrix.min-java) || '' }}.tar" {} ';'
shell: bash

- name: Upload Artifact
Expand Down

0 comments on commit 0269cbb

Please sign in to comment.