tomlplusplus/.github/workflows/gh-pages.yaml
Mark Gillard 62c4c34e15 ci: fix doxygen generation not running
Also took the opportunity to add some sensible filters to the main ci script.
2022-04-22 23:32:57 +03:00

45 lines
844 B
YAML

name: gh-pages
on:
push:
branches:
- master
paths:
- '**.h'
- '**.hpp'
- '**.dox'
- 'docs/**'
workflow_dispatch:
branches:
- master
jobs:
gh-pages:
runs-on: ubuntu-latest
container:
image: debian:testing
defaults:
run:
shell: sh
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apt-get -y update
apt-get -y install --no-install-recommends python3-pip doxygen git
pip3 install --upgrade --requirement tools/requirements.txt
- name: Generate docs
run: |
cd docs
poxy --verbose
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/html