Skip to content

Update Prometheus metrics + Add Grafana sample #86

Update Prometheus metrics + Add Grafana sample

Update Prometheus metrics + Add Grafana sample #86

Workflow file for this run

name: Doxygen GitHub Pages Deploy Action
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
deploy:
permissions:
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo
runs-on: ubuntu-latest
container: egecetinn/alpine
steps:
- name: Checkout repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: recursive
- name: Rename templates
run: sh scripts/firstName.sh -n Repo-Init
- name: Configure
run: cmake -S . -B build
- name: Generate Doxygen Documentation
run: cmake --build build --target docs
- name: Create .nojekyll (ensures pages with underscores work on gh pages)
run: touch doc/html/.nojekyll
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@881db5376404c5c8d621010bcbec0310b58d5e29 # v4.6.8
with:
branch: gh-pages
folder: doc/html