mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix Doxygen build
This commit is contained in:
committed by
manojsdoshi
parent
758a3792eb
commit
3e9cff9287
23
.github/workflows/doxygen.yml
vendored
Normal file
23
.github/workflows/doxygen.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Build and publish Doxygen documentation
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
job:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: set OUTPUT_DIRECTORY
|
||||
run: echo 'OUTPUT_DIRECTORY = html' >> docs/Doxyfile
|
||||
- name: build
|
||||
uses: mattnotmitt/doxygen-action@v1
|
||||
with:
|
||||
doxyfile-path: 'docs/Doxyfile'
|
||||
- name: publish
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./html
|
||||
Reference in New Issue
Block a user