We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ff1f3 commit e89c81aCopy full SHA for e89c81a
.github/workflows/doxygen.yml
@@ -20,11 +20,15 @@ jobs:
20
- name: Generate Doxygen configuration and build it
21
run: |
22
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
23
+ echo "Generating documentation for tag: $TAG_NAME"
24
mkdir -p build/doc/docs/$TAG_NAME && cd build && cmake -D BUILD_DOCUMENTATION=ON -D SKIP_CXX_BUILD=ON .. && make doc
25
+ ls build/doc/docs/
26
27
- name: Move contents of html folder one level up
28
29
30
+ echo "Docs folder:"
31
32
mv build/doc/docs/$TAG_NAME/html/* build/doc/docs/$TAG_NAME/
33
34
- name: Create index.html for redirect
0 commit comments