Skip to content

Merge pull request #278 from trampgeek/dependabot/composer/twig/twig-… #7

Merge pull request #278 from trampgeek/dependabot/composer/twig/twig-…

Merge pull request #278 from trampgeek/dependabot/composer/twig/twig-… #7

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- master
- main
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history for gh-pages deployment
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install mkdocs and dependencies
run: |
pip install mkdocs mkdocs-material
- name: Build documentation
run: mkdocs build
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force