Skip to content

Update README.md (#30) #197

Update README.md (#30)

Update README.md (#30) #197

Workflow file for this run

name: Deploy Sphinx documentation to Pages
on:
push:
branches: [main] # branch to trigger deployment
jobs:
pages:
runs-on: ubuntu-20.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install pydata-sphinx-theme
pip install sphinx-argparse
pip install sphinx-design
pip install git+https://github.com/choldgraf/sphinx-social-previews
- id: deployment
uses: sphinx-notes/pages@v3
with:
python_version: '3.12'