Skip to content

Commit

Permalink
ci: prefix artifact directories
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud committed Nov 19, 2021
1 parent c8a7f5a commit cd8fbd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Unpack Artifacts
run: |
for file in *.zip; do
unzip "$file" -d "${file%.zip}"
unzip "$file" -d "build_${file%.zip}"
done
- name: Generate Coverage
Expand All @@ -64,7 +64,7 @@ jobs:
'/usr/*' \
--output-file coverage.info
readarray -t build_dirs < <(ls -d build*/)
readarray -t build_dirs < <(ls -d build_*/)
for file in src/glog/*.h.in; do
name=$(basename ${file})
Expand Down

0 comments on commit cd8fbd5

Please sign in to comment.