Skip to content

feat(hook): built-in JSONL trace exporter via Hook (issue #942) (#983) #511

feat(hook): built-in JSONL trace exporter via Hook (issue #942) (#983)

feat(hook): built-in JSONL trace exporter via Hook (issue #942) (#983) #511

Workflow file for this run

name: Deploy Docs to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
cd docs
python -m pip install --upgrade pip
pip install -q -e ".[dev]"
- name: Build Docs
run: |
cd docs
jupyter-book clean .
jupyter-book build .
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
cname: java.agentscope.io