From f692de62383de2ae0dac57d5bf523eb0724f937a Mon Sep 17 00:00:00 2001 From: Levent Kaya Date: Sun, 24 Nov 2024 13:54:50 +0300 Subject: [docs] path fixes --- .github/doxygen-gh-pages.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to '.github/doxygen-gh-pages.yml') diff --git a/.github/doxygen-gh-pages.yml b/.github/doxygen-gh-pages.yml index dd9f6f1..b43486d 100644 --- a/.github/doxygen-gh-pages.yml +++ b/.github/doxygen-gh-pages.yml @@ -21,7 +21,10 @@ jobs: sudo apt-get install -y doxygen graphviz - name: Generate Doxygen Documentation - run: doxygen Doxyfile + run: | + cd docs + doxygen Doxyfile + cd .. - name: Deploy to GitHub Pages if: github.ref == 'refs/heads/master' @@ -30,4 +33,11 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/html enable_jekyll: false - full_commit_message: Deploy Doxygen documentation \ No newline at end of file + full_commit_message: Deploy Doxygen documentation + + - name: List generated files + run: | + echo "Contents of docs directory:" + ls -la docs/ + echo "Contents of docs/html directory (if exists):" + ls -la docs/html/ || echo "html directory not found" \ No newline at end of file -- cgit v1.2.3