Expressions: Added RealToComplex #305
Workflow file for this run
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: 📜Documentation | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [develop] | |
env: | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
render_doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Download Doxygen | |
run: gh release download --repo doxygen/doxygen Release_1_9_6 --pattern doxygen-1.9.6.linux.bin.tar.gz | |
- name: Extract Doxygen | |
run: tar -zxf doxygen-1.9.6.linux.bin.tar.gz doxygen-1.9.6/bin/doxygen | |
- name: Download Doxygen Awesome | |
run: gh release download --repo jothepro/doxygen-awesome-css v2.1.0 --archive=tar.gz | |
- name: Extract Doxygen | |
run: tar -zxf doxygen-awesome-css-2.1.0.tar.gz | |
- name: Run Doxygen | |
run: doxygen-1.9.6/bin/doxygen | |
- name: Save Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Documentation | |
path: doxygen | |
- name: Deploy to GitHub Pages (if on develop or main branch) | |
if: ${{ github.ref_name == 'develop' }} | |
uses: JamesIves/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
branch: gh-pages | |
folder: doxygen/html |