summaryrefslogtreecommitdiff
path: root/.github/workflows/doxygen.yml
diff options
context:
space:
mode:
authorLevent Kaya <levent.kaya@codefirst.io>2024-11-27 01:55:17 +0300
committerLevent Kaya <levent.kaya@codefirst.io>2024-11-27 01:55:17 +0300
commit71d43eca3a7de8e82daa0ca4203efffe7d0504cb (patch)
tree4919793db8b304bf25f1c14fb491a3ff1872cdc6 /.github/workflows/doxygen.yml
parentbe6767c2877d0843e8d0f9a5d18dc62f589a6826 (diff)
[ci] fix
Diffstat (limited to '.github/workflows/doxygen.yml')
-rw-r--r--.github/workflows/doxygen.yml12
1 files changed, 3 insertions, 9 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
index 133c247..1c8f225 100644
--- a/.github/workflows/doxygen.yml
+++ b/.github/workflows/doxygen.yml
@@ -18,18 +18,12 @@ jobs:
- name: Install Doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
- # Step 3: Ensure docs directory exists and download Doxygen Awesome files
- - name: Setup Doxygen Awesome Theme
- run: |
- mkdir -p docs
- curl -o docs/doxygen-style.css https://raw.githubusercontent.com/jothepro/doxygen-awesome-css/main/doxygen-awesome.css
- curl -o docs/doxygen-dark.js https://raw.githubusercontent.com/jothepro/doxygen-awesome-css/main/doxygen-awesome-darkmode-toggle.js
-
- # Step 4: Run Doxygen using the existing Doxyfile
+ # Step 3: Run Doxygen using the existing Doxyfile
- name: Run Doxygen
+ working-directory: docs
run: doxygen Doxyfile
- # Step 5: Deploy to GitHub Pages
+ # Step 4: Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with: