Skip to content

Update index.md

Update index.md #3

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
paths:
- docs/**
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v1
- name: Install Python and Pip Packages
uses: actions/setup-python@v4
with:
python-version: '3.11.4'
cache: 'pip'
- name: "Install Dependencies"
run: pip install -r requirements.txt
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}