Skip to content

Deploy Documentation #321

Deploy Documentation

Deploy Documentation #321

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