Files
decypharr/.github/workflows/deploy-docs.yml
2025-04-13 11:29:08 +01:00

32 lines
600 B
YAML

name: Deploy Documentation
on:
push:
branches:
- main
- beta
- experimental
paths:
- 'docs/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Deploy docs
run: |
cd docs
mkdocs gh-deploy --force