Skip to content

Commit

Permalink
issue #106 prepare doxygen for ghpages
Browse files Browse the repository at this point in the history
  • Loading branch information
tobexyz committed Mar 11, 2024
1 parent 289e032 commit 984626d
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/main.yml
Expand Up @@ -40,20 +40,20 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: "site"
path: "_site/"
name: site
path: _site/
- name: Doxygen Action
uses: mattnotmitt/doxygen-action@v1.9.8
with:
# Path to Doxyfile
doxyfile-path: "./Doxyfile" # default is ./Doxyfile
doxyfile-path: ./Doxyfile# default is ./Doxyfile
# Working directory
working-directory: "." # default is .
working-directory: . # default is .
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: "doxygen"
path: "docs/doxygen"
name: doxygen
path: docs/doxygen

# Deployment job
deploy:
Expand All @@ -63,7 +63,14 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
- name: Deploy to GitHub Pages site
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: site
- name: Deploy to GitHub Pages doxygen
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: doxygen

0 comments on commit 984626d

Please sign in to comment.