Skip to content

Commit

Permalink
Try fix Doxygen action
Browse files Browse the repository at this point in the history
  • Loading branch information
ceztko committed Dec 20, 2023
1 parent 33bf892 commit 0518a92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "${{github.workspace}}/documentation/html"
path: "${{github.workspace}}/build/doxygen"

deploy:
needs: build-and-deploy
Expand Down
6 changes: 3 additions & 3 deletions Doxyfile.in
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# General Information
PROJECT_NAME = @PROJECT_NAME@
PROJECT_NUMBER = @PROJECT_NUMBER@
OUTPUT_DIRECTORY = ./build/documentation
OUTPUT_DIRECTORY = "@CMAKE_CURRENT_BINARY_DIR@/doxygen"

# General Configuration
QUIET = YES
WARN_IF_UNDOCUMENTED = YES
WARN_AS_ERROR = NO

# Source Paths
INPUT = ./src/podofo
INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/src/podofo"
RECURSIVE = YES

# File Extensions
Expand All @@ -23,7 +23,7 @@ HIDE_UNDOC_CLASSES = YES

# Output Settings
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_OUTPUT = documentation
GENERATE_HTMLHELP = NO
GENERATE_LATEX = NO

Expand Down

0 comments on commit 0518a92

Please sign in to comment.