fix(ci): install rust before installing mdbook

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-25 14:45:15 -03:00
parent 24724bd32e
commit 4739b739f4

View file

@ -17,6 +17,11 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install mdBook - name: Install mdBook
run: | run: |
if ! command -v mdbook &> /dev/null; then if ! command -v mdbook &> /dev/null; then