Merge pull request #53 from mathLab/v9.5.0 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doxygen | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get deal.tag | |
run: | | |
wget https://www.dealii.org/developer/doxygen/deal.tag | |
- name: Build Doxygen documentation | |
uses: mattnotmitt/[email protected] | |
with: | |
doxyfile-path: "./docs/Doxyfile" | |
working-directory: "." | |
- name: Publish Doxygen documentation | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./doc/html/ | |