Skip to content

feat: update mysql

feat: update mysql #34

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
name: Deploy Documentation to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Cache
uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install Dependencies
run: pip install mkdocs-material
- name: Install plugins
run: pip install mkdocs-glightbox
- name: Deploy Documentation to GitHub Pages
run: mkdocs gh-deploy --force --no-history