Implement quiet flag, Rename funcName to name #8
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: Deploy Documentation | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Installation | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get install doxygen -y | |
sudo apt-get install graphviz -y | |
- name: Generate Documentation | |
shell: bash | |
run: doxygen ./build/Doxyfile | |
- name: Deploy Documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: "gh-pages" | |
folder: "./html" | |
target-folder: "./" |