1
Fork 0

ci: add workflow for publishing docs

This commit is contained in:
Tibo De Peuter 2026-05-03 17:37:38 +02:00 committed by GitHub
parent e7ef89ef24
commit f87c696dac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
.github/workflows/publish-docs.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Publish docs via GitHub Pages
on:
push:
branches:
- main
- dev
- docs/*
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}