Skip to content

Commit

Permalink
Merge pull request #257 from goruklu/master
Browse files Browse the repository at this point in the history
workflow for doxygen doc generation and github pages deployment
  • Loading branch information
mateusz-hobgarski-red authored Aug 29, 2023
2 parents f9cdba9 + 06be7bb commit c4c4e65
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/doxygen-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: generate doxygen docs and deploy on Github pages
on:
push:
branches:
- master
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: DenverCoder1/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: doc/html
config_file: Doxyfile
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT =
INPUT = README.md ./

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down Expand Up @@ -920,7 +920,7 @@ FILTER_SOURCE_PATTERNS =
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.

USE_MDFILE_AS_MAINPAGE =
USE_MDFILE_AS_MAINPAGE = README.md

#---------------------------------------------------------------------------
# Configuration options related to source browsing
Expand Down

0 comments on commit c4c4e65

Please sign in to comment.