DenverCoder1 / doxygen-github-pages-action

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

Doesn't create folder if it doesn't exist #12

Closed arran4 closed 2 years ago

arran4 commented 2 years ago

I needed to add:

      - name: mkdir
        run: mkdir -p docs/html

Above to get it to work.

Actually that failed b/c of a tree change or context change, I needed to add a .gitkeep to the folder to get past that point. Perhaps a "create-folder-if-not-exist' option which defaults to true?

DenverCoder1 commented 2 years ago

This should happen automatically when you run doxygen.

If it doesn't, make sure the Output Directory in your configuration matches the folder configured in the action.

arran4 commented 2 years ago

Ahhh..