From 04b630a76ae3a2cd3762ca281d163990e3a942c6 Mon Sep 17 00:00:00 2001 From: Levent Kaya Date: Wed, 27 Nov 2024 02:12:36 +0300 Subject: [ci] test --- .github/workflows/doxygen.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to '.github/workflows/doxygen.yml') diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 5379a9f..bbe4630 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -26,7 +26,24 @@ jobs: git clone --depth 1 https://github.com/mosra/m.css.git docs/m.css # Step 4: Create Doxyfile - # Ensure your Doxyfile includes the correct HTML_EXTRA_FILES configuration as mentioned above + - name: Create Doxyfile + run: | + echo "PROJECT_NAME = fbgl" > Doxyfile + echo "PROJECT_NUMBER = 0.1.0" >> Doxyfile + echo "OUTPUT_DIRECTORY = docs" >> Doxyfile + echo "USE_MDFILE_AS_MAINPAGE = README.md" >> Doxyfile + echo "INPUT = fbgl.h README.md" >> Doxyfile + echo "FILE_PATTERNS = *.h *.md" >> Doxyfile + echo "RECURSIVE = NO" >> Doxyfile + echo "GENERATE_HTML = YES" >> Doxyfile + echo "HTML_OUTPUT = html" >> Doxyfile + echo "GENERATE_LATEX = NO" >> Doxyfile + echo "GENERATE_MAN = NO" >> Doxyfile + echo "GENERATE_RTF = NO" >> Doxyfile + echo "QUIET = YES" >> Doxyfile + echo "MARKDOWN_SUPPORT = YES" >> Doxyfile + echo "EXTENSION_MAPPING = md=markdown" >> Doxyfile + echo "HTML_EXTRA_FILES = docs/m.css/css/m-dark.css docs/m.css/css/m-components.css docs/m.css/css/m-layout.css docs/m.css/css/m-style.css docs/m.css/css/m-theme.css docs/m.css/js/m.js docs/m.css/js/m-search.js" >> Doxyfile # Step 5: Run Doxygen - name: Run Doxygen -- cgit v1.2.3