Increase OME-Arrow and iceberg performance and scaling (#465) #274
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 |