Skip to content

Commit 394b278

Browse files
committed
fix mkdocs auto build
1 parent d02bf54 commit 394b278

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/doc.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,17 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install -q -e ".[dev,doc]"
32+
pip install -e ".[dev,docs]"
3333
3434
- name: Build Cookbook
3535
run: |
36+
which mkdocs
37+
mkdocs --version
3638
mkdocs build
3739
3840
- name: Deploy to GitHub Pages
3941
uses: peaceiris/actions-gh-pages@v4
4042
with:
4143
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: docs/_build/preview/_build/html
43-
cname: doc.agentjet.github.io
44+
publish_dir: site
45+
cname: doc.agentjet.github.io

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ reward = [
5959
]
6060

6161
flash_attn = [
62-
"flash-attn==2.8.1"
62+
"flash-attn==2.8.3"
6363
]
6464

6565
docs = [

0 commit comments

Comments
 (0)