aboutsummaryrefslogtreecommitdiff
path: root/deps/inja/.github/workflows/documentation.yml
diff options
context:
space:
mode:
Diffstat (limited to 'deps/inja/.github/workflows/documentation.yml')
-rw-r--r--deps/inja/.github/workflows/documentation.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/deps/inja/.github/workflows/documentation.yml b/deps/inja/.github/workflows/documentation.yml
new file mode 100644
index 0000000..cddd438
--- /dev/null
+++ b/deps/inja/.github/workflows/documentation.yml
@@ -0,0 +1,27 @@
+name: Documentation
+
+on:
+ push:
+ branches:
+ - master
+
+jobs:
+ build-deploy:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@master
+
+ - name: dependencies
+ env:
+ dependency_packages: doxygen
+ run: sudo apt-get update && sudo apt-get -y install ${dependency_packages}
+
+ - name: build
+ run: cd doc && doxygen ./Doxyfile
+
+ - name: deploy
+ uses: peaceiris/actions-gh-pages@v2.2.0
+ env:
+ ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
+ PUBLISH_BRANCH: gh-pages
+ PUBLISH_DIR: ./doc/html