Added separate doxygen workflow
This commit is contained in:
parent
6061145ae6
commit
9e4f897701
1 changed files with 26 additions and 0 deletions
26
.github/workflows/doxygen.yml
vendored
Normal file
26
.github/workflows/doxygen.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Doxygen
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
doxygen:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install Doxygen
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y doxygen
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Generate docs
|
||||||
|
run: doxygen Doxyfile
|
||||||
|
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH: gh-pages
|
||||||
|
FOLDER: docs/html
|
Loading…
Add table
Reference in a new issue