Skip to content

Bump mkdocs-material from 9.5.16 to 9.5.50 #100

Bump mkdocs-material from 9.5.16 to 9.5.50

Bump mkdocs-material from 9.5.16 to 9.5.50 #100

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request: ~
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Setup uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: 'requirements.txt'
- name: Install dependencies
run: uv pip install -r requirements.txt --system
- run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cname: docs.edgebox.io
publish_dir: ./site