Skip to content

docs-deploy

docs-deploy #101

Workflow file for this run

name: docs-deploy
on:
schedule:
- cron: "0 0 * * 1"
push:
branches:
- main
# pull_request:
# types:
# - opened
# - reopened
workflow_dispatch:
concurrency:
group: "docs"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-git-revision-date-localized-plugin
- run: pip install mkdocs-git-authors-plugin
- run: pip install mkdocs-enumerate-headings-plugin
- run: pip install mkdocs-glightbox
#- run: pip install mkdocs-print-site-plugin
- run: mkdocs gh-deploy --force