Skip to content

Move to new "Server requirements" section #32

Move to new "Server requirements" section

Move to new "Server requirements" section #32

Workflow file for this run

name: Build preview
on:
# Runs on pushes targeting the default branch
push:
branches-ignore: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install Sphinx
run: pip install -r requirements.txt
- name: Build HTML documentation
run: make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_build/html
- run: |
echo "::notice You can preview the new manual in the artifact of this workflow! (Download and locally view in browser.)"