Skip to content

Commit d6b5bb4

Browse files
authored
Merge pull request #43 from qorix-group/piotrkorkus_fix_zsh_copy
cicd: fix bash cp command
2 parents 85d8045 + 65c32e2 commit d6b5bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Create archive of test report
6767
run: |
6868
mkdir -p artifacts
69-
cp -r --parents bazel-testlogs/src/**/test.xml artifacts/
69+
find bazel-testlogs/src -name 'test.xml' -print0 | xargs -0 -I{} cp --parents {} artifacts/
7070
zip -r ${{ github.event.repository.name }}_coverage_report.zip artifacts/
7171
shell: bash
7272

0 commit comments

Comments
 (0)