Skip to content

⬆️ Bump mkdocs-material from 9.5.12 to 9.5.17 (#65) #59

⬆️ Bump mkdocs-material from 9.5.12 to 9.5.17 (#65)

⬆️ Bump mkdocs-material from 9.5.12 to 9.5.17 (#65) #59

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: make install
- name: Build
run: make build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site