Skip to content

Commit

Permalink
chore(ci): add preview-docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RiscadoA committed Aug 27, 2023
1 parent 0a17df8 commit 8be048d
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/preview-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: 📖 Deploy Documentation Previews

on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed

env:
BUILD_TYPE: Release

concurrency: preview-${{ github.ref }}

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install xorg-dev libglu1-mesa-dev doxygen
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install jinja2 pygments
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_DOCUMENTATION=ON

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target generate-docs

- name: Deploy preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: ${{github.workspace}}/build/docs/doxygen/html

0 comments on commit 8be048d

Please sign in to comment.