diff options
Diffstat (limited to '.github/doxygen-gh-pages.yml')
| -rw-r--r-- | .github/doxygen-gh-pages.yml | 14 |
1 files changed, 12 insertions, 2 deletions
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 |
