Skip to content

Deploy Documentation #317

Deploy Documentation

Deploy Documentation #317

name: deploy-documentation
run-name: "Deploy Documentation"
# on:
# push:
# branches:
# - master
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: python:3.12.6-bullseye
options: --user 1001
steps:
- uses: actions/checkout@v2
- run: >
cd docs;
pip install -r requirements.txt;
export ENABLED_HTMLPROOFER=true;
mkdocs gh-deploy --force --strict;