Skip to content

feat: Add website config (#6) #1

feat: Add website config (#6)

feat: Add website config (#6) #1

Workflow file for this run

name: Deploy user manual to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install mdBook
run: cargo install mdbook
- name: Build the book
run: mdbook build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
publish_branch: gh-pages