From 96afa4db933ebcc130190ec3af294c05ae67bfdc Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 22 Sep 2025 21:23:00 -0400 Subject: [PATCH] ci: A few fixes for mdbook Signed-off-by: Colin Walters --- .github/workflows/docs.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 49b7be45d..2b53af31f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -35,15 +35,10 @@ jobs: - name: Install mdbook-linkcheck run: | curl -sSL https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.7.7/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -o linkcheck.zip - unzip linkcheck.zip + unzip -o linkcheck.zip chmod +x mdbook-linkcheck echo "$(pwd)" >> $GITHUB_PATH - - name: Install mdbook_header_footer - run: | - curl -sSL https://github.com/cgwalters/mdbook_header_footer/releases/download/v0.1.0/mdbook_header_footer-v0.1.0-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=. - echo "$(pwd)" >> $GITHUB_PATH - - name: Build documentation run: | cd docs @@ -53,7 +48,7 @@ jobs: if: github.ref == 'refs/heads/main' uses: actions/upload-pages-artifact@v3 with: - path: docs/book/html + path: docs/book deploy: if: github.ref == 'refs/heads/main'