Skip to content

first commit

first commit #1

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install mkdocs-material
- name: Deploy to GitHub Pages
run: |
git config user.name github-actions
git config user.email github-actions@github.com
mkdocs gh-deploy --force