We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 85d8045 + 65c32e2 commit d6b5bb4Copy full SHA for d6b5bb4
.github/workflows/release.yml
@@ -66,7 +66,7 @@ jobs:
66
- name: Create archive of test report
67
run: |
68
mkdir -p artifacts
69
- cp -r --parents bazel-testlogs/src/**/test.xml artifacts/
+ find bazel-testlogs/src -name 'test.xml' -print0 | xargs -0 -I{} cp --parents {} artifacts/
70
zip -r ${{ github.event.repository.name }}_coverage_report.zip artifacts/
71
shell: bash
72
0 commit comments