Skip to content

Update concurrency_summary.md #11

Update concurrency_summary.md

Update concurrency_summary.md #11

name: 'Deploy to GitHub Pages'
on:
push:
branches:
- main
jobs:
deploy-to-gh-pages:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y
- name: Generate Doxygen Documentation
run: doxygen
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.TOKEN }}
branch: "gh-pages"
folder: "doc/html"