ci: unzip artifacts into separate directories

This commit is contained in:
Sergiu Deitsch 2021-11-19 22:40:33 +01:00
parent f42fd3b154
commit f773eb9b6f

View File

@ -38,7 +38,9 @@ jobs:
- name: Unpack artifacts
run: |
unzip '*.zip'
for file in *.zip; do
unzip "$file" -d ${file%.zip}
done
- name: Generate Coverage
run: |