Skip to content

Commit c5b29a4

Browse files
committed
ci: benchmark: Fix installation of gdu
1 parent c710290 commit c5b29a4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -566,12 +566,11 @@ jobs:
566566
VERSION: '5.0.0'
567567
run: |
568568
mkdir -p GDU.tmp
569-
archive_name="dua-v${VERSION}-x86_64-unknown-linux-musl"
570569
curl -L "${REPO}/releases/download/v${VERSION}/gdu_linux_amd64.tgz" > tmp.gdu.tar.gz
571570
tar xf tmp.dua.tar.gz --directory=GDU.tmp
572571
mkdir -p GDU.tmp/bin
573-
chmod +x "GDU.tmp/${archive_name}"
574-
ln -s "$(pwd)/GDU.tmp/${archive_name}" GDU.tmp/bin/gdu
572+
chmod +x GDU.tmp/gdu_linux_amd64
573+
ln -s "$(pwd)/GDU.tmp/gdu_linux_amd64" GDU.tmp/bin/gdu
575574
echo "$(pwd)/GDU.tmp/bin" >> "$GITHUB_PATH"
576575
577576
- name: Install hyperfine

0 commit comments

Comments
 (0)