Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/build-doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
pull_request:
branches:
branches:
- master
types: [closed]


# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -27,7 +26,6 @@ concurrency:
jobs:
# Single deploy job since we're just deploying
deploy:
if: ${{ github.event.pull_request.merged }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -51,7 +49,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './docs/html'
path: "./docs/html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ EXAMPLE_RECURSIVE = NO
# that contain images that are to be included in the documentation (see the
# \image command).

IMAGE_PATH =
IMAGE_PATH = .

# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
Expand Down