Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterMute committed Nov 23, 2023
1 parent 14ee82c commit d54e8e3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Documentation

on:
push:
workflow_dispatch:

jobs:
test-doc:
name: Deploy documentation
runs-on: ubuntu-20.04

steps:

- name: Checkout the Git repository
uses: actions/checkout@v2

- name: Generate Documentation
run: |
sudo apt-get update
sudo apt-get install -y cmake doxygen doxygen-latex graphviz
cd docs
sudo env WUT_VERSION=${GITHUB_REF_NAME#v} cmake .
doxygen Doxyfile.docs >/dev/null
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/html
single-commit: true
clean: true
clean-exclude: CNAME

0 comments on commit d54e8e3

Please sign in to comment.