Skip to content

Commit e89c81a

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

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/doxygen.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ jobs:
2020
- name: Generate Doxygen configuration and build it
2121
run: |
2222
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
23+
echo "Generating documentation for tag: $TAG_NAME"
2324
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/
2426
2527
- name: Move contents of html folder one level up
2628
run: |
2729
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
30+
echo "Docs folder:"
31+
ls build/doc/docs/
2832
mv build/doc/docs/$TAG_NAME/html/* build/doc/docs/$TAG_NAME/
2933
3034
- name: Create index.html for redirect

0 commit comments

Comments
 (0)