We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3092890 commit 44c9c8eCopy full SHA for 44c9c8e
.github/workflows/docs.yml
@@ -0,0 +1,16 @@
1
+name: Docs
2
+on:
3
+ push:
4
+ branches: [master]
5
+jobs:
6
+ docs:
7
+ name: Doxygen
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - run: doxygen doxygen.conf
11
+ - run: cp -r docs/Documentation ../docs
12
+ - run: git checkout gh-pages
13
+ - run: rm -r master && cp -r ../docs master
14
+ - run: touch .nojekyll && git add .
15
+ - run: git config user.name "github-actions[bot]" && git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
16
+ - run: git commit -m "Documentation for ${{github.sha}}"
.gitignore
@@ -1 +1,2 @@
/vendor/
+/docs/
0 commit comments