Skip to content

Commit

Permalink
Fix documentation publishing step
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarfovich committed Jul 31, 2024
1 parent 0169fa9 commit ae10763
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/HW4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,19 +123,17 @@ jobs:

# Build the HTML documentation
- name: Doxygen Action
working-directory: ${{env.build_path}}
uses: mattnotmitt/[email protected]
with:
doxyfile-path: ./Doxyfile
doxyfile-path: ${{ env.hw_path }}/Doxyfile
working-directory: .

# Deploy the HTML documentation to GitHub Pages
- name: GH Pages Deployment
working-directory: ${{env.build_path}}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/html/
publish_dir: ${{ env.hw_path }}/doc/html/
enable_jekyll: false
allow_empty_commit: false
force_orphan: true

0 comments on commit ae10763

Please sign in to comment.