mirror of
https://github.com/pantor/inja.git
synced 2026-05-18 02:05:23 +00:00
26 lines
465 B
YAML
26 lines
465 B
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: build
|
|
run: |
|
|
apt -y install doxygen
|
|
cd doc
|
|
doxygen ./Doxyfile
|
|
|
|
- name: deploy
|
|
uses: peaceiris/actions-gh-pages@v2.2.0
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./doc/html
|