Skip to content

Update build badges #16

Update build badges

Update build badges #16

Workflow file for this run

name: "Pages"
on:
push:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Doxygen
run: sudo apt-get -y install doxygen graphviz
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Configure with CMake
run: cmake -B build -S ${{ github.workspace }}
- name: Build with CMake
run: cmake --build build --target gw_docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: build/docs/html
deploy:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3