-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: LHT129 <[email protected]>
- Loading branch information
Showing
3 changed files
with
2,739 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Doxygen Update | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
doxygen: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get install -y doxygen | ||
python -m pip install --upgrade pip | ||
pip install breathe | ||
- name: Generate doxygen xml | ||
run: doxygen | ||
- name: Push changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "$GITHUB_ACTOR" | ||
mv ./doxy_doc/xml ./xml | ||
breathe-apidoc -o cpp_api xml | ||
git add xml cpp_api | ||
if [ -n "$(git status --porcelain)" ] | ||
then | ||
git commit -m "Update API Docs ($(git rev-parse --short main))." | ||
git push origin gh-pages | ||
fi | ||
# git fetch origin gh-pages | ||
# git checkout gh-pages | ||
# git rm -rf xml cpp_api |
Oops, something went wrong.