We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ef444 commit c7ef868Copy full SHA for c7ef868
1 file changed
.github/workflows/doxygen.yml
@@ -13,8 +13,7 @@ jobs:
13
name: Documentation
14
runs-on: ubuntu-24.04
15
permissions:
16
- pages: write
17
- id-token: write
+ contents: write
18
steps:
19
- name: Checkout source
20
uses: actions/checkout@v6
@@ -29,11 +28,9 @@ jobs:
29
28
run: doxygen
30
working-directory: "${{ github.workspace }}/doc"
31
32
- - name: Upload artifact
33
- uses: actions/upload-pages-artifact@v3
+ - name: Deploy documentation
+ uses: peaceiris/actions-gh-pages@v4
34
with:
35
- path: ./doc/html
36
-
37
- - name: Deploy to GitHub Pages
38
- id: deployment
39
- uses: actions/deploy-pages@v4
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ force_orphan: true
+ publish_dir: ./doc/html
0 commit comments