Skip to content

Increment version in prep for the v0.2.2 release (#160) #7

Increment version in prep for the v0.2.2 release (#160)

Increment version in prep for the v0.2.2 release (#160) #7

Workflow file for this run

name: Build documentation
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Build documentation
run: uvx --with "mkdocstrings[python]" zensical build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5