Skip to content

Update setup.cfg for ref urls #12

Update setup.cfg for ref urls

Update setup.cfg for ref urls #12

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches:
- master # Replace with your default branch if it's not 'master'
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Specify the Python version
- name: Install Dependencies
run: |
sudo apt-get install tree
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
pip install -r docs/requirements.txt
# Install any other dependencies here
- name: Install Package
run: |
pip install .
- name: Build Documentation
run: |
cd docs
make html
ls _build/html
tree _build/html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
user_name: 'tyeth'
user_email: '[email protected]'
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html