We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd8d93d commit 77a7dbeCopy full SHA for 77a7dbe
.github/workflows/push-docs.yml
@@ -32,17 +32,15 @@ jobs:
32
git config --global user.email "[email protected]"
33
34
- name: setup registry code documentation
35
- run: |
36
- apt install doxygen -y
37
- cd engine/packages/ecs-lib/docs
38
- doxygen Doxyfile
39
- cd -
40
- cp engine/packages/ecs-lib/docs engine/docs/registry/api
+ uses: mattnotmitt/doxygen-action@v1
+ with:
+ doxyfile-path: engine/packages/ecs-lib/docs/Doxyfile
41
42
- name: synchronize docs
43
run: |
+ cp -r engine/packages/ecs-lib/docs engine/docs/registry/api
44
mkdir -p docs/engine
45
- cp engine/docs/. -r docs/engine
+ cp -r engine/docs/* docs/engine
46
cd docs
47
git add .
48
git commit -m "chore(engine): updating docs"
0 commit comments