mirror of
https://github.com/pantor/inja.git
synced 2026-03-29 04:12:45 +00:00
27 lines
521 B
YAML
27 lines
521 B
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install doxygen
|
|
run: sudo apt-get -y install doxygen
|
|
|
|
- name: Build documentation
|
|
working-directory: doc
|
|
run: doxygen
|
|
|
|
- name: Deploy documentation
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
publish_branch: gh-pages
|
|
publish_dir: ./doc/html
|