Skip to content

Merge pull request #17 from seapagan/add-fuzzy-time #6

Merge pull request #17 from seapagan/add-fuzzy-time

Merge pull request #17 from seapagan/add-fuzzy-time #6

Workflow file for this run

name: Deploy mdBook to GitHub Pages
on:
push:
branches:
- main
paths:
- 'docs/**' # only need this to run if changes to the actual docs
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mdBook
run: cargo install mdbook
- name: Build the book
run: mdbook build docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GH_PAT }}
publish_dir: ./docs/book
publish_branch: gh-pages