docs: build and deploy to github pages

Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
Jérémie Drouet 2022-02-27 14:41:20 +01:00
parent 1a1f87a634
commit 4b7eaa47c4
1 changed files with 18 additions and 0 deletions

18
.github/workflows/doc.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: building github pages documentation
on:
push:
branches:
- stable
jobs:
build-and-deploy:
name: building documentation and deploying it on gh-pages branch
runs-on: ubuntu-latest
steps:
- name: pull the code
uses: actions/checkout@v2
- name: install dependencies
run: pip install -r requirements.txt
- name: build and deploy
run: mkdocs gh-deploy -f docs/en/mkdocs.yml