Skip to content

Commit fd76620

Browse files
committed
ci: benchmark: Use [email protected]
1 parent f7e3dad commit fd76620

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/deploy.yaml

+10-4
Original file line numberDiff line numberDiff line change
@@ -518,12 +518,18 @@ jobs:
518518
- name: Install dutree
519519
env:
520520
REPO: https://github.com/nachoparker/dutree
521-
VERSION: '0.2.15'
521+
VERSION: '0.2.18'
522522
run: |
523523
mkdir -p DUTREE.tmp
524-
curl -L "${REPO}/releases/download/v${VERSION}/dutree" > DUTREE.tmp/dutree
525-
chmod +x DUTREE.tmp/dutree
526-
echo "$(pwd)/DUTREE.tmp" >> "$GITHUB_PATH"
524+
flags=(
525+
--force
526+
--root DUTREE.tmp
527+
--version "$VERSION"
528+
--profile release
529+
--locked
530+
)
531+
cargo install "${flags[@]}" dutree
532+
echo "$(pwd)/DUTREE.tmp/bin" >> "$GITHUB_PATH"
527533
528534
- name: Install dua
529535
env:

0 commit comments

Comments
 (0)