mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-16 14:53:28 +02:00
5c03394b31
This will help avoid breakage[1] when mdbook and mdbook-svgbob are out of sync with each other. [1]: https://github.com/boozook/mdbook-svgbob/issues/25.
21 lines
602 B
YAML
21 lines
602 B
YAML
name: Install mdbook and dependencies
|
|
|
|
description: Install the mdbook with the dependencies we need.
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
# The --locked flag is important for reproducible builds. It also
|
|
# avoids breakage due to skews between mdbook and mdbook-svgbob.
|
|
- name: Install mdbook
|
|
run: cargo install mdbook --locked --version 0.4.25
|
|
shell: bash
|
|
|
|
- name: Install mdbook-svgbob
|
|
run: cargo install mdbook-svgbob --locked --version 0.2.1
|
|
shell: bash
|
|
|
|
- name: Install i18n-helpers
|
|
run: cargo install --path i18n-helpers --locked
|
|
shell: bash
|