Added IORQ card type bus addressing, now allows for overlap of the tw… #30
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: ["main"] | |
workflow_dispatch: | |
jobs: | |
doxygen-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Doxygen | |
run: sudo apt-get install doxygen | |
- name: Generate Documentation | |
run: doxygen Doxyfile | |
- name: Copy necessary files | |
run: cp -r .doxygen/html/* . && cp extern/doxygen_theme_flat_design/src/img/* . | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: . |