Unfollowing accidental follow of git submodules. #10
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: Generate and Deploy Doxygen Documentation | |
on: | |
push: | |
branches: ["develop", "main"] | |
workflow_dispatch: | |
jobs: | |
doxygen-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Retrieve submodules | |
run: git submodule update --init --recursive | |
- name: Install Doxygen | |
run: sudo apt-get install doxygen | |
- name: Generate Documentation | |
run: ./make_docs.sh | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: .doxygen/html |