utility algorithms cleanup #13
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: docs | |
on: | |
push: | |
branches: [master] | |
jobs: | |
update-docs: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- name: install-doxygen | |
run: sudo apt update && sudo apt install -y doxygen | |
- name: git-config | |
run: | | |
git config --global user.name ${{ github.repository_owner }} | |
git config --global user.email ${{ github.repository_owner }}@users.noreply.github.com | |
- name: update-api-docs | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
fetch-depth: 0 | |
- run: | | |
git rebase origin/master | |
sudo bash ./docs/api/generate_api_docs.sh | |
sudo rsync -a docs/api/sphinx-out/ docs/ | |
git commit --all --amend --no-edit | |
git push --force-with-lease | |
- name: update-wiki-pages | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.repository }}.wiki | |
path: wiki | |
- run: | | |
rm -f wiki/*.md | |
cp docs/*.md wiki/ | |
cd wiki | |
git add . | |
git commit --amend --no-edit | |
git push --force-with-lease |