Skip to content

Bump version: 4.3.2 → 4.3.3 #374

Bump version: 4.3.2 → 4.3.3

Bump version: 4.3.2 → 4.3.3 #374

Workflow file for this run

name: docs
on:
push:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install system dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get install -y -qq libicu-dev
- uses: actions/setup-python@v6
with:
cache: 'pip'
- name: Install requirements
run: |
pip install --no-cache-dir -q -e ".[dev]"
pip install --no-cache-dir -q -e ".[docs]"
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with mkdocs
run: mkdocs build -c -d site
- name: Export the ontology metadata
run: |
make ontology
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./site
# Deployment job
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
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@v4