diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml new file mode 100644 index 0000000..e44f0e0 --- /dev/null +++ b/.github/workflows/doc.yml @@ -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