Skip to content

Updated links to docs in main README.md #46

Updated links to docs in main README.md

Updated links to docs in main README.md #46

Workflow file for this run

name: Build Docs
on:
workflow_dispatch:
pull_request:
branches:
- main
types: [closed]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
echo "PYTHONPATH=`pwd`" >> $GITHUB_ENV
- name: Build docs
run: |
sudo apt-get update -y && sudo apt-get install -y pandoc
sphinx-build -b html -a docs docs/site
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/site