Skip to content

Update sites

Update sites #1

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- main # ← main ブランチに push されたら実行
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: pip install mkdocs-material pymdown-extensions
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force