Skip to content

Commit

Permalink
wip ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-chedaleux committed Aug 7, 2023
1 parent b3df783 commit 3c89149
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: API documentation generation

on:
push:
branches:
- generate-api-doc

jobs:
container:
runs-on: ubuntu-latest
container: hrektts/doxygen
steps:
- uses: actions/checkout@v3
- run: |
doxygen doc/doxygen.cfg
mv html _site
name: Generate documentation
- uses: actions/upload-pages-artifact@v2
name: Upload Pages artifact
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 3c89149

Please sign in to comment.