Skip to content

docs: add tool call processing walkthrough to loop guide (#34) #5

docs: add tool call processing walkthrough to loop guide (#34)

docs: add tool call processing walkthrough to loop guide (#34) #5

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths:
- 'docs/book/**'
workflow_dispatch:
permissions:
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdBook
uses: taiki-e/install-action@mdbook
- name: Build book
run: mdbook build docs/book/
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: target/book/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4