Skip to content

Commit

Permalink
Add a workflow for publishing Doxygen-generated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rmisev committed Oct 23, 2023
1 parent 4de43ee commit 74c2dfc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Documentation

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- uses: mattnotmitt/doxygen-action@edge
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: upa-url/docs
publish_dir: ./doc/html

0 comments on commit 74c2dfc

Please sign in to comment.