Skip to content

Commit

Permalink
Add workflow from master
Browse files Browse the repository at this point in the history
  • Loading branch information
Autumn60 committed Jan 11, 2024
1 parent a11119f commit 47505d6
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:
- master

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 47505d6

Please sign in to comment.