mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 11:26:26 +00:00
af637f7e89
Now matches toml/pull/891.
43 lines
815 B
YAML
43 lines
815 B
YAML
name: gh-pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**.h'
|
|
- '**.hpp'
|
|
- '**.dox'
|
|
- 'docs/**'
|
|
workflow_dispatch:
|
|
|
|
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
|