Skip to content

Commit

Permalink
Merge pull request #4 from KevinAlavik/patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
schkwve committed Feb 27, 2024
2 parents 53abc96 + 2131050 commit b5976dd
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
name: Generate Doxygen Documentation
name: Build and Deploy Documentation

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
- name: Checkout Repository
uses: actions/checkout@v2

- name: Doxygen Action
uses: mattnotmitt/doxygen-action@1.9.8
- name: Install Doxygen
run: sudo apt-get install -y doxygen

- name: Generate Documentation
run: |
mkdir doc
doxygen -u Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/html

0 comments on commit b5976dd

Please sign in to comment.