Skip to content

Commit

Permalink
Add workflow file for compiling documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Master92 committed Sep 20, 2023
1 parent 7d7ea42 commit 4c06482
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
# Triggers the workflow on push for any branch
push:
branches:
- "*"

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: 🔨 Build documentation
uses: mattnotmitt/[email protected]

- name: 💾 Upload documentation artifact
uses: actions/upload-artifact@v3
with:
name: Doxygen documentation
path: doc/html

0 comments on commit 4c06482

Please sign in to comment.