Skip to content

fixed amazing bug

fixed amazing bug #6

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install mkdocs-material
pip install mkdocs-awesome-pages-plugin
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force