[ci] Try to understand weird exprtk bug? #738
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 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update -yqq | |
sudo apt-get install -yqq doxygen doxygen-doc doxygen-gui graphviz | |
- name: Build Documentation | |
run: | | |
cd docs/Doxygen | |
doxygen > doxygen.log | |
mkdir -p publish | |
mv html publish | |
- name: Deploy Documentation | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/Doxygen/publish | |
commit_message: 'Deploy code docs to GitHub Pages, Github Action id: $GITHUB_ACTION \nCommit: $GITHUB_SHA' | |
force_orphan: true |