Skip to content

Commit a238099

Browse files
committed
docs workflow
1 parent 30407ae commit a238099

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build docs
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
deploy:
9+
name: Deploy Documentation
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Setup uv
16+
uses: astral-sh/setup-uv@v6
17+
18+
- name: Build docs
19+
run: |
20+
cd sdk/python/packages/flet
21+
# uv run --group docs mkdocs build
22+
uv sync --group docs && uv run mkdocs build

0 commit comments

Comments
 (0)