summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLevent Kaya <levent.kaya@codefirst.io>2024-11-27 02:07:15 +0300
committerLevent Kaya <levent.kaya@codefirst.io>2024-11-27 02:07:15 +0300
commit39aa93e6897b95c451fb54a490fed311d212b2d1 (patch)
tree7c6bccb9da8e84b71f79621ec655a596599e6a6a /.github
parent240eaa1b40fa188fbef3e6ec07e041dbea046c31 (diff)
[ci] Fix the File Cloning and Path Issues
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/doxygen.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
index 32d6169..d4ab573 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 # Replace with your default branch if different
+ - master
jobs:
build:
@@ -23,7 +23,6 @@ jobs:
# Step 3: Clone m.css repository
- name: Clone m.css
run: |
- mkdir -p docs/m.css
git clone --depth 1 https://github.com/mosra/m.css.git docs/m.css
# Step 4: Create Doxyfile
@@ -42,12 +41,10 @@ jobs:
echo "GENERATE_MAN = NO" >> Doxyfile
echo "GENERATE_RTF = NO" >> Doxyfile
echo "QUIET = YES" >> Doxyfile
- echo "EXTENSION_MAPPING = md=markdown" >> Doxyfile
echo "MARKDOWN_SUPPORT = YES" >> Doxyfile
- echo "HTML_EXTRA_STYLESHEET = docs/m.css/css/m-dark.css" >> 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
- # Step 5: Run Doxygen to generate raw HTML files
+ # Step 5: Run Doxygen
- name: Run Doxygen
run: doxygen Doxyfile