mirror of
https://github.com/pantor/inja.git
synced 2026-06-07 19:39:44 +00:00
27 lines
528 B
YAML
27 lines
528 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
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./doc/html
|