Skip to content

Commit 19c9d6c

Browse files
committed
Remove trailing comma
1 parent d35c835 commit 19c9d6c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ jobs:
2828
- name: Find JUnit test results
2929
id: junit_files
3030
run: |
31-
files="$(ls **build/test-results/**/TEST-*.xml | tr '\n' ',')"
31+
files="$(ls **build/test-results/**/TEST-*.xml | paste -s -d ',' -)"
3232
echo "files=$files" >> "$GITHUB_OUTPUT"
33+
echo "Found files: $files"
3334
- name: Upload Test Results to Codecov
3435
if: ${{ !cancelled() }}
3536
uses: codecov/test-results-action@v1

0 commit comments

Comments
 (0)