Skip to content

Commit b795a7b

Browse files
committed
Fix Doxygen workflow to include autogen script before configuration
1 parent 7b743e8 commit b795a7b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/doxygen.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
2828
- name: Prepare Doxyfile
2929
# Use configure script to generate Doxyfile (Doxyfile.in must exist)
30-
run: ./configure
30+
run: |
31+
./autogen.sh
32+
./configure
3133
3234
- name: Generate documentation
3335
run: doxygen Doxyfile

0 commit comments

Comments
 (0)