Merge branch 'master' of github.com:choll/xtr #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install packages | |
run: | | |
sudo apt-get install doxygen | |
pip install sphinx | |
pip install breathe | |
pip install sphinx-rtd-theme | |
- name: make docs | |
run: make -B docs | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: github-actions | |
author_email: [email protected] | |
message: 'Update documentation' | |
add: -u docs |