Skip to content

Commit e1bb443

Browse files
committed
Merge branch 'main' into devel/general
2 parents 213fc53 + 6037ab4 commit e1bb443

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed
Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
name: documentation-generation
2-
on: [push]
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
312
jobs:
4-
doxygen:
13+
generate-documentation:
514
runs-on: ubuntu-latest
615
steps:
7-
- uses: actions/checkout@v4
8-
- name: generate-documentation
16+
- name: checkout
17+
uses: actions/checkout@v4
18+
- name: run-doxygen
919
uses: mattnotmitt/doxygen-action@1.12.0
1020
with:
1121
doxyfile-path: 'docs/doxyfile'
22+
- name: Setup Pages
23+
uses: actions/configure-pages@v4
24+
- name: Upload artifact
25+
uses: actions/upload-pages-artifact@v3
26+
with:
27+
path: 'docs/html'
28+
- name: Deploy to GitHub Pages
29+
id: deployment
30+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)