mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-01-08 09:00:12 +02:00
19 lines
445 B
YAML
19 lines
445 B
YAML
|
name: Install mdbook and dependencies
|
||
|
|
||
|
description: Install the mdbook with the dependencies we need.
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: Install mdbook
|
||
|
run: cargo install mdbook --version 0.4.25
|
||
|
shell: bash
|
||
|
|
||
|
- name: Install mdbook-svgbob
|
||
|
run: cargo install mdbook-svgbob --version 0.2.1
|
||
|
shell: bash
|
||
|
|
||
|
- name: Install i18n-helpers
|
||
|
run: cargo install --path i18n-helpers --locked
|
||
|
shell: bash
|