Skip to content

Add documentation and troubleshooting link to README #4

Add documentation and troubleshooting link to README

Add documentation and troubleshooting link to README #4

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
- name: Build site
run: mkdocs build --site-dir site
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./site
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4