diff options
| author | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 02:10:47 +0300 |
|---|---|---|
| committer | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 02:10:47 +0300 |
| commit | 2ee992fa3c11c8bcaf860840b9f1d636e6b69d5b (patch) | |
| tree | 39041da3a705d8ded15af68a3388225e28cbefd0 | |
| parent | 39aa93e6897b95c451fb54a490fed311d212b2d1 (diff) | |
[ci] test
| -rw-r--r-- | .github/workflows/doxygen.yml | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index d4ab573..5379a9f 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -3,7 +3,7 @@ name: Generate and Deploy Doxygen Documentation with m.css on: push: branches: - - master + - master # Replace with your default branch if different jobs: build: @@ -26,23 +26,7 @@ jobs: git clone --depth 1 https://github.com/mosra/m.css.git docs/m.css # Step 4: Create Doxyfile - - name: Create Doxyfile - run: | - echo "PROJECT_NAME = fbgl" > Doxyfile - echo "PROJECT_NUMBER = 0.1.0" >> Doxyfile - echo "OUTPUT_DIRECTORY = docs" >> Doxyfile - echo "INPUT = fbgl.h README.md" >> Doxyfile - echo "USE_MDFILE_AS_MAINPAGE = 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 "HTML_EXTRA_FILES = docs/m.css/js/m.js docs/m.css/js/m-search.js 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" >> Doxyfile + # Ensure your Doxyfile includes the correct HTML_EXTRA_FILES configuration as mentioned above # Step 5: Run Doxygen - name: Run Doxygen |
