Skip to content

Commit 4c7974d

Browse files
committed
fix: Trying to fix doxygen docu workflow
1 parent 12ff1f3 commit 4c7974d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/doxygen.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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 build/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

0 commit comments

Comments
 (0)