mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9165dfe8cf
this does a thing we don't actually want to do (generate a pdf), and is also broken, because everything is someone else's problem Co-authored-by: Pheenoh <pheenoh@gmail.com>
23 lines
458 B
YAML
23 lines
458 B
YAML
name: run Doxygen to generate docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: generate docs
|
|
uses: mattnotmitt/doxygen-action@v1
|
|
with:
|
|
doxyfile-path: 'Doxyfile'
|
|
- name: deploy docs to github pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./docs/doxygen
|