Skip to content

book: Check links with lychee #2790

book: Check links with lychee

book: Check links with lychee #2790

Workflow file for this run

name: book
on:
pull_request:
paths:
- "book/**"
push:
branches:
- "master"
paths:
- "book/**"
jobs:
build-deploy:
runs-on: ubuntu-latest
name: build
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
- run: mdbook build -d public
working-directory: book
- name: Link Checker
uses: lycheeverse/[email protected]
with:
args: book/book
fail: true
- name: Deploy to stable
uses: peaceiris/actions-gh-pages@v3
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'release' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/public
keep_files: false
destination_dir: stable/latest/book