Skip to content

Commit 78930aa

Browse files
committed
Fix workflow
1 parent 2d5e111 commit 78930aa

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/mainline-test.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,9 @@ jobs:
4343
pacman -Sy --noconfirm && pacman -S unzip --noconfirm
4444
fi
4545
ls -la artifacts
46-
for archive in artifacts/*.zip; do
47-
mkdir -p unpacked
48-
unzip -q "$archive" -d unpacked
49-
for subarchive in unpacked/*; do
50-
tar -xpf "$subarchive" -C / --overwrite
51-
done
46+
for archive in artifacts/*.tar.gz; do
47+
tar -xpf "$archive" -C / --overwrite
5248
for f in /opt/hcpu/tests/*; do
5349
[ -f "$f" ] && [ -x "$f" ] && "$f"
5450
done
55-
rm -rf unpacked
5651
done

0 commit comments

Comments
 (0)