Skip to content

Commit

Permalink
deploy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Surendrajat committed Mar 1, 2021
1 parent 6cbf0c0 commit c5a4b4b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Documentation

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: install dependencies
run: |
apt install -y doxygen
pip3 install -U sphinx breathe sphinx-rtd-theme recommonmark
- name: build docs
run: |
cd docs
make html
cd ..
- name: deploy docs
run: |
bash scripts/deploy_docs.sh

0 comments on commit c5a4b4b

Please sign in to comment.