Skip to content

Config files (#17)

Config files (#17) #4

Workflow file for this run

name: Doxygen
env:
DOCS_FOLDER: 'doxygen/docs/html'
TARGET_BRANCH: 'doxygen_pages'
on:
push:
branches: 'master'
workflow_dispatch:
permissions:
contents: write
jobs:
docs:
name: Building Doxygen documentation
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Doxygen
run: sudo apt-get install doxygen -y
shell: bash
- name: Build Doxygen documentation
run: |
cd doxygen
doxygen Doxyfile
shell: bash
- name: Create .nojekyll
run: touch ${{ env.DOCS_FOLDER }}/.nojekyll
shell: bash
- name: Deploy to Github pages
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: ${{ env.TARGET_BRANCH }}
folder: ${{ env.DOCS_FOLDER }}