DenverCoder1 / doxygen-github-pages-action

GitHub Action for deploying Doxygen documentation to a GitHub pages branch
MIT License
75 stars 16 forks source link

Doxygen not going through all C++ files #9

Closed Napolitain closed 2 years ago

Napolitain commented 2 years ago

Hi, I checked my Doxyfile, and it works, with an output to docs/html.

I use this into my existing github action

    - name: Doxygen GitHub Pages Deploy Action
      uses: DenverCoder1/doxygen-github-pages-action@v1
      with:
        github_token: ${{ secrets.GITHUB_TOKEN }}

after my tests pass.

What is possibly problematic? Token? I haven't set any as I saw somewhere it should be automatic. Is it true?

Also my branch gh-pages looks like this : image

Thanks!

DenverCoder1 commented 2 years ago

That should work, does any error come up?

The output directory in the Doxyfile should be set to just "docs" since the html folder automatically appears in the output directory.

Napolitain commented 2 years ago

Yes Doxyfile is set to "docs"

image

Note that my workflow (named CMake) triggers another which is not mined (I guess it is from Github Pages).

image

Napolitain commented 2 years ago

Alright my bad I assume, it was that Doxyfile was setup with a absolute path to my source (which is obviously bad !!). Thanks for the github action !!