Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for version detection
- name: Setup Pages
uses: actions/configure-pages@v5
- uses: astral-sh/setup-uv@v5
Expand All @@ -30,6 +32,7 @@ jobs:
enable-cache: true
- run: |
uv sync --group dev
uv build
make docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
7 changes: 7 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,10 @@ def get_version():
html_css_files = [
"custom.css",
]

# Furo theme options
html_theme_options = {
"source_repository": "https://github.com/laughingman7743/PyAthena/",
"source_branch": "master",
"source_directory": "docs/",
}