We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed41a8c commit 385cefaCopy full SHA for 385cefa
1 file changed
.github/workflows/docs.yml
@@ -13,17 +13,19 @@ jobs:
13
with:
14
submodules: recursive
15
- name: Installation
16
- run: sudo apt-get -y install ps2eps texlive-latex-extra doxygen
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get -y install ps2eps texlive-latex-extra doxygen
19
- name: Build
20
run: |
21
pushd Documents/doxygen
22
doxygen Doxyfile
23
popd
24
mv ../../Doxygen/html ./build
25
- name: Deploy
- uses: JamesIves/github-pages-deploy-action@3.6.2
26
+ uses: JamesIves/github-pages-deploy-action@v4
27
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- BRANCH: gh-pages
28
- FOLDER: build
29
- CLEAN: true
+ token: ${{ secrets.GITHUB_TOKEN }}
+ branch: gh-pages
30
+ folder: build
31
+ clean: true
0 commit comments