Skip to content

added path for cleaner TOC in rendered pages (#129) #18

added path for cleaner TOC in rendered pages (#129)

added path for cleaner TOC in rendered pages (#129) #18

Workflow file for this run

name: publish
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build site
run: mkdocs build --strict
- name: Upload to GitHub Pages
uses: actions/upload-pages-artifact@v2
with:
path: site
deploy:
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}