Skip to content

Commit

Permalink
Create doxygen.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PaoloMazzon authored Jul 19, 2024
1 parent 918152d commit cbfb7b3
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 @@
name: Deploy Doxygen Documentation to GitHub Pages

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Doxygen
run: sudo apt-get install -y doxygen graphviz

- name: Generate Doxygen documentation
run: doxygen Doxyfile

- name: Deploy to GitHub Pages
uses: PaoloMazzon/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html # The directory containing generated documentation

0 comments on commit cbfb7b3

Please sign in to comment.