File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,18 @@ jobs:
2020 - name : Generate Doxygen configuration and build it
2121 run : |
2222 TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
23- mkdir -p build/doc/docs/$TAG_NAME && cd build && cmake -D BUILD_DOCUMENTATION=ON -D SKIP_CXX_BUILD=ON .. && make doc
23+ echo "Generating documentation for tag: $TAG_NAME"
24+ mkdir -p build/doc/docs/$TAG_NAME
25+ cd build
26+ cmake -D BUILD_DOCUMENTATION=ON -D SKIP_CXX_BUILD=ON ..
27+ make doc
28+ ls doc/docs/
2429
2530 - name : Move contents of html folder one level up
2631 run : |
2732 TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
33+ echo "Docs folder:"
34+ ls build/doc/docs/
2835 mv build/doc/docs/$TAG_NAME/html/* build/doc/docs/$TAG_NAME/
2936
3037 - name : Create index.html for redirect
You can’t perform that action at this time.
0 commit comments