Skip to content

Commit

Permalink
Adding the workflow to build the doxygen docs again
Browse files Browse the repository at this point in the history
  • Loading branch information
JOOpdenhoevel authored Aug 31, 2024
1 parent 9f8f792 commit 1922fc7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Workflow that builds the doxygen documentation.

name: Doxygen

on:
push:
branches: [ master ]

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Doxygen Build
uses: mattnotmitt/[email protected]

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doxygen/html/

0 comments on commit 1922fc7

Please sign in to comment.