Skip to content

Winbuild workflow: do not call distutils anymore as it was removed #77

Winbuild workflow: do not call distutils anymore as it was removed

Winbuild workflow: do not call distutils anymore as it was removed #77

Workflow file for this run

name: "Build and deploy Github pages"
on:
push:
branches: master
jobs:
build-and-deploy:
name: "Build and deploy Sphinx documentation"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
with:
persist-credentials: false
submodules: true
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: "Install Python dependencies"
run: |
pip3 install setuptools nox
- name: "Build Sphinx Doc"
run: |
nox -s gendoc
- name: "Deploy Github Pages"
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build/html/