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 8, 2023
1 parent b3df783 commit aeeb1fe
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: API documentation generation

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

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

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

0 comments on commit aeeb1fe

Please sign in to comment.