Skip to content

Commit

Permalink
fix some naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Jul 26, 2024
1 parent 42b9165 commit 5323c88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
cd downloads
for target in "${targets[@]}"; do
for component in "${components[@]}"; do
tar_name="$component-$version-$target.tar"
xz_name="$tar_name.xz"
full_name="$component-$version-$target"
xz_name="$full_name.tar.xz"
wget https://static.rust-lang.org/dist/$xz_name
tar -xJf $xz_name
tar -cf - $xz_name | zstd --ultra -22 -o "../artifacts/$tar_name.zst"
tar -cf - $full_name | zstd --ultra -22 -o "../artifacts/$full_name.tar.zst"
done
done
Expand Down

0 comments on commit 5323c88

Please sign in to comment.