diff options
| author | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 01:46:42 +0300 |
|---|---|---|
| committer | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 01:46:42 +0300 |
| commit | b3dc615d673efc78f7068cd068df4a9d48a39a92 (patch) | |
| tree | 8bd25f3e8cac16bab9a0f5c6c56347101b6d6eea /.github/workflows | |
| parent | 262a11cc3cc4550b4962a3d2e55219f37460a88e (diff) | |
[ci] update doxygen ui
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/doxygen.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index caf74c8..bc6dfa6 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -23,13 +23,15 @@ jobs: run: doxygen -g Doxyfile # Step 4: Configure Doxygen - # Update Doxyfile to document only fbgl.h and set output directory + # Update Doxyfile to document only fbgl.h, use README.md as homepage, and set version - name: Update Doxyfile run: | sed -i 's/^PROJECT_NAME.*/PROJECT_NAME = "fbgl"/' Doxyfile + sed -i 's/^PROJECT_NUMBER.*/PROJECT_NUMBER = 0.1.0/' Doxyfile sed -i 's/^OUTPUT_DIRECTORY.*/OUTPUT_DIRECTORY = docs/' Doxyfile - sed -i 's/^INPUT.*/INPUT = fbgl.h/' Doxyfile - sed -i 's/^FILE_PATTERNS.*/FILE_PATTERNS = fbgl.h/' Doxyfile + sed -i 's/^INPUT.*/INPUT = fbgl.h README.md/' Doxyfile + sed -i 's/^USE_MDFILE_AS_MAINPAGE.*/USE_MDFILE_AS_MAINPAGE = README.md/' Doxyfile + sed -i 's/^FILE_PATTERNS.*/FILE_PATTERNS = fbgl.h README.md/' Doxyfile sed -i 's/^RECURSIVE.*/RECURSIVE = NO/' Doxyfile sed -i 's/^GENERATE_LATEX.*/GENERATE_LATEX = NO/' Doxyfile sed -i 's/^GENERATE_MAN.*/GENERATE_MAN = NO/' Doxyfile |
