Skip to content

Update index.rst

Update index.rst #159

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Prepare 🍱
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install and Build 🔧
run: |
python3 -m pip install -r requirements.txt
sphinx-build -M html . _build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: _build/html # The folder the action should deploy.