Extended FSI capabilities by including ustruct as solid solver (#458) #241
This file contains hidden or 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
| # This workflow builds and deploys the html documentation | |
| name: Documentation | |
| on: [push, pull_request] | |
| permissions: | |
| contents: write | |
| jobs: | |
| documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build doxygen documentation | |
| run: | | |
| sudo apt install -y doxygen | |
| doxygen Documentation/Doxyfile | |
| - name: Save documentation | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: documentation | |
| path: Documentation/build/html | |
| - name: Deploy documentation | |
| if: github.ref == 'refs/heads/main' | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: Documentation/build/html |