Skip to content

Commit

Permalink
Merge pull request #92 from Autumn60/doxygen-ci
Browse files Browse the repository at this point in the history
Doxygen-CI
  • Loading branch information
Autumn60 authored Jan 7, 2024
2 parents c37f5eb + ca119c5 commit daab941
Show file tree
Hide file tree
Showing 2 changed files with 2,789 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Generate and Deploy Doxygen Documentation

on:
push:
branches:
- main

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

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

- name: Setup Doxygen and Graphviz
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Generate Doxygen Documentation
run: |
doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/html
Loading

0 comments on commit daab941

Please sign in to comment.