taskter 0.1.0

Taskter is a terminal Kanban board CLI tool built with Rust.
Documentation
name: Deploy Docs

on:
  push:
    branches: [main]
  workflow_dispatch:

jobs:
  build:
    permissions:
      contents: write
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          profile: minimal
          override: true
      - name: Install mdBook
        run: cargo install mdbook --version 0.4.37
      - name: Build book
        run: mdbook build docs
      - name: Deploy to GitHub Pages
        uses: peaceiris/actions-gh-pages@v4
        with:
          github_token: ${{ secrets.GH_TOKEN }}
          publish_dir: docs/book
          publish_branch: gh-pages