Skip to content

book: Add missing steps for installation in windows #2788

book: Add missing steps for installation in windows

book: Add missing steps for installation in windows #2788

Workflow file for this run

name: book
on:
pull_request:
paths:
- "book/**"
push:
branches:
- "master"
paths:
- "book/**"
jobs:
build-deploy:
runs-on: ubuntu-22.04
name: build
steps:
- uses: actions/checkout@v3
- 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: 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