Move to new "Server requirements" section #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.)" |