Skip to content

chore(release): bump to v0.14.0 #11

chore(release): bump to v0.14.0

chore(release): bump to v0.14.0 #11

Workflow file for this run

name: Documentation Building
on:
release:
types: [published]
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_and_deploy:
permissions:
contents: write
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install additional dependencies
run: sudo apt-get update && sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18 libmariadb-dev && sudo apt-get autoremove -y && sudo apt-get clean -y
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Build Release Documentation
run: uv run scripts/build_docs.py dist/docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist/docs/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4