Skip to content

Commit

Permalink
add Doxygfile, run and deploy Doxygen output via GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysses4ever committed Jun 5, 2024
1 parent b5fc69f commit 3ca6401
Show file tree
Hide file tree
Showing 2 changed files with 2,878 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Octo Organization CI

on:
push:
branches: [ master ]

jobs:
doxygen:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Copying README inside owl so that Doxygen finds it
run: cp ./README.md owl/README.md

- name: run Doxygen
uses: mattnotmitt/doxygen-action@v1.9.5

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

0 comments on commit 3ca6401

Please sign in to comment.