Skip to content

Increase OME-Arrow and iceberg performance and scaling (#465) #274

Increase OME-Arrow and iceberg performance and scaling (#465)

Increase OME-Arrow and iceberg performance and scaling (#465) #274

Workflow file for this run

---
name: publish docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Setup uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Check lockfile
run: uv lock --check
- name: Install frozen environment
run: uv sync --frozen --all-extras --group docs
- name: Build documentation
run: |
mkdir pages
touch pages/.nojekyll
cd docs
uv run --frozen sphinx-build -b html source _build
cp -r _build/* ../pages/
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: pages
folder: pages