mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-18 11:08:36 -05:00
22 lines
654 B
YAML
22 lines
654 B
YAML
name: Documentation CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: sudo apt install graphviz
|
|
- run: wget https://raw.githubusercontent.com/jothepro/doxygen-awesome-css/v1.6.1/doxygen-awesome.css
|
|
- run: wget https://raw.githubusercontent.com/jothepro/doxygen-awesome-css/v1.6.1/doxygen-awesome-sidebar-only.css
|
|
- uses: mattnotmitt/doxygen-action@v1
|
|
- name: deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./doxy/html
|
|
force_orphan: true
|