Skip to content

updates

updates #17

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # Change this if your default branch is different (e.g., 'master')
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install MkDocs and dependencies
run: |
pip install mkdocs mkdocs-material
- name: Build the MkDocs site
run: mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site