Skip to content

Commit

Permalink
Add workflow to publish documentation
Browse files Browse the repository at this point in the history
Closes #35
  • Loading branch information
baynezy committed Feb 12, 2024
1 parent 8cfa77b commit 86c830d
Show file tree
Hide file tree
Showing 4 changed files with 762 additions and 330 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Push Documentation

on:
push:
branches:
- master
workflow_dispatch:


jobs:
push-documentation:
runs-on: ubuntu-latest
steps:
- uses: DenverCoder1/doxygen-github-pages-action@v1.3.0
with:
github_token: ${{ secrets.PUBLISH_DOCS_TOKEN }}
branch: gh-pages
config_file: doxygen.config
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -447,4 +447,7 @@ MigrationBackup/
# End of https://www.toptal.com/developers/gitignore/api/dotnetcore,rider,vs

# exe build
output/
output/

## Doxygen
docs/
Loading

0 comments on commit 86c830d

Please sign in to comment.