From 64f277b3e5c5b2706528a6d5fa5c225a9087ec54 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 6 Aug 2024 17:01:28 +0200 Subject: [PATCH] What's wrong? --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e28e304..0feec71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,10 @@ jobs: with: fetch-depth: 0 - uses: actions-rust-lang/setup-rust-toolchain@v1 - - name: Install plugin + - name: Install exercise plugin run: cargo install --path helpers/mdbook-exercise-linker + - name: Install link shortener plugin + run: cargo install --path helpers/mdbook-link-shortener - name: Install mdbook-pandoc and related dependencies run: | cargo install mdbook-pandoc --locked --version 0.7.1 @@ -102,7 +104,7 @@ jobs: ./helpers/json2redirects.sh book/link2alias.json > site/redirects # Verify nothing has changed, meaning that the redirect file is up-to-date - run: | - git diff-index --quiet HEAD || (echo "Redirects are out-of-date" && exit 1) + git diff-index --quiet HEAD || (echo "Redirects are out-of-date" && git diff && exit 1) formatter: runs-on: ubuntu-latest