Correct the spell of the path. #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate doxygen file into docs/html directory. | ||
# Then, push it to the gh-pages contents. | ||
# The project needs to configure to upload the gh-pages branch. | ||
# Refer https://github.com/DenverCoder1/doxygen-github-pages-action | ||
# PAT is allowed only to the "Contents" | ||
name: Doxygen GitHub Pages Deploy Action | ||
on: | ||
workflow_call: | ||
push: | ||
branches: | ||
- develop | ||
workflow_dispatch: | ||
jobs: | ||
Deploy-Pages: | ||
needs: CTest | ||
uses: ./.github/workflows/ctest.yaml | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: DenverCoder1/doxygen-github-pages-action@v2.0.0 | ||
with: | ||
github_token: ${{ secrets.DOXYGEN_GH_PAGE }} | ||
branch: gh-pages | ||
folder: docs/html | ||
config_file: Doxyfile |