From 3ff964c93ac929ab1d69b94e87cb24d55f3ecd17 Mon Sep 17 00:00:00 2001 From: Benedikt Galbavy Date: Wed, 17 Apr 2024 09:25:54 +0200 Subject: [PATCH] doxygen deploy action --- .github/workflows/doxygen.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/doxygen.yaml diff --git a/.github/workflows/doxygen.yaml b/.github/workflows/doxygen.yaml new file mode 100644 index 0000000..0fde428 --- /dev/null +++ b/.github/workflows/doxygen.yaml @@ -0,0 +1,23 @@ +on: + push: + branches: + - main + - documentation +permissions: + contents: write + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Action Doxygen and GitHub Pages + id: ghaction + uses: AgarwalSaurav/ghaction-doxygen-ghpages@v2.0.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + working-directory: . + doxyfile-path: Doxyfile + html-output-folder: docs/html + branch: gh-pages \ No newline at end of file