add title to compiler update

This commit is contained in:
klensy 2024-09-29 11:36:00 +03:00
parent 9903b256a2
commit 33f637c577

View File

@ -61,9 +61,11 @@ jobs:
rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN
rustup default $TOOLCHAIN rustup default $TOOLCHAIN
- name: cargo update - name: cargo update compiler & tools
# Remove first line that always just says "Updating crates.io index" # Remove first line that always just says "Updating crates.io index"
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log run: |
echo -e "\ncompiler & tools dependencies:" >> cargo_update.log
cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
- name: cargo update library - name: cargo update library
run: | run: |
echo -e "\nlibrary dependencies:" >> cargo_update.log echo -e "\nlibrary dependencies:" >> cargo_update.log