Skip to content

feat: per-tool inline filter stats in CLI chat #102

feat: per-tool inline filter stats in CLI chat

feat: per-tool inline filter stats in CLI chat #102

Workflow file for this run

name: Docs
on:
push:
branches: [main]
paths: [docs/**]
pull_request:
paths: [docs/**]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install mdBook
run: |
mkdir -p $HOME/.local/bin
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.5.2/mdbook-v0.5.2-x86_64-unknown-linux-gnu.tar.gz \
| tar xz -C $HOME/.local/bin
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Build
run: mdbook build docs
- uses: actions/configure-pages@v5
if: github.ref == 'refs/heads/main'
- uses: actions/upload-pages-artifact@v4
if: github.ref == 'refs/heads/main'
with:
path: docs/book
deploy:
if: github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4