We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c8cad commit 5995b02Copy full SHA for 5995b02
1 file changed
.github/workflows/docpublish.yml
@@ -1,4 +1,4 @@
1
-name: publish
+name: documentation
2
3
on:
4
push:
@@ -7,7 +7,7 @@ on:
7
branches: [ main ]
8
9
jobs:
10
- deploy:
+ build:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout repository and submodules
@@ -24,9 +24,8 @@ jobs:
24
doxyfile-path: './doc/Doxyfile'
25
- name: rm gitignore
26
run: rm .gitignore
27
- - name: Publish generated content to GitHub Pages
28
- uses: tsunematsu21/actions-publish-gh-pages@v1.0.2
+ - name: Deploy doc
+ uses: peaceiris/actions-gh-pages@v4
29
with:
30
- dir: ./doxyout/html
31
- branch: gh-pages
32
- token: ${{ secrets.GITHUB_TOKEN }}
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./doxyout/html
0 commit comments