Skip to content

Commit

Permalink
test: new action
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo-Beci committed May 7, 2024
1 parent 7672b1b commit 041daa1
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
name: Doxygen GitHub Pages Deploy Action
name: Documentation

on:
push:
branches:
- master
workflow_dispatch:
branches: [ master ]

jobs:
deploy:
build-documentation:
runs-on: ubuntu-latest

steps:
- uses: DenverCoder1/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2

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

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

0 comments on commit 041daa1

Please sign in to comment.