Skip to content

docs: bold ProcessKit in opening sentence #18

docs: bold ProcessKit in opening sentence

docs: bold ProcessKit in opening sentence #18

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main]
paths: ["docs/**", "theme/**", "book.toml"]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: |
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz \
| tar -xz --directory=/usr/local/bin/
- name: Build
run: mdbook build
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
enable_jekyll: false