From 4c06482de5dc4eda80b3d0e15aeb88d115c31058 Mon Sep 17 00:00:00 2001 From: Master92 Date: Wed, 20 Sep 2023 10:07:10 +0200 Subject: [PATCH] Add workflow file for compiling documentation --- .github/workflows/documentation.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/documentation.yaml diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml new file mode 100644 index 0000000..48fb540 --- /dev/null +++ b/.github/workflows/documentation.yaml @@ -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/doxygen-action@v1.9.5 + + - name: 💾 Upload documentation artifact + uses: actions/upload-artifact@v3 + with: + name: Doxygen documentation + path: doc/html \ No newline at end of file