Update Prometheus metrics + Add Grafana sample #86
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
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 |