Skip to content

up deps

up deps #1

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
permissions:
contents: write # Allows writing to the repository (e.g., pushing to gh-pages)
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for proper versioning
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build and deploy docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mkdocs gh-deploy --force