Feature/interface to erforce simulator #162
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
# | |
# Created by Max Thielen on Oct. 15, 2021 | |
# Updated by Jibbe Andringa on Mar. 7, 2023 | |
# | |
name: Doxygen Documentation | |
on: | |
# Triggers the action on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this action manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy_doxy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: "true" | |
- name: Install Doxygen | |
run: sudo apt-get install doxygen -y | |
shell: bash | |
- name: Generate Doxygen Documentation | |
run: doxygen doxygen | |
shell: bash | |
- name: Deploy to Github Pages | |
uses: JamesIves/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
branch: gh_pages | |
folder: docs/html |