Skip to content

Unfollowing accidental follow of git submodules. #10

Unfollowing accidental follow of git submodules.

Unfollowing accidental follow of git submodules. #10

Workflow file for this run

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