Skip to content

Commit

Permalink
attempt to add doxygen documentation action
Browse files Browse the repository at this point in the history
  • Loading branch information
dennbla authored and dennbla committed May 21, 2024
1 parent 2e95a5e commit d0dbaa7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy_gh_pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 'Deploy to GitHub Pages'
on:
push:
branches:
- main
jobs:
deploy-to-gh-pages:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Doxygen
run: sudo apt-get install doxygen -y

- name: Generate Doxygen Documentation
run: doxygen

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.TOKEN }}
branch: "gh-pages"
folder: "html"

0 comments on commit d0dbaa7

Please sign in to comment.