Fix bug #149 (#148) whereby file_handle::zero()
on Linux didn't
#434
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: | |
- develop | |
- master | |
pull_request: | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
documentation: | |
name: "Regenerate and publish Documentation" | |
runs-on: ubuntu-latest | |
env: | |
NAME: Documentation | |
steps: | |
- name: Checkout Documentation | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Regenerate Documentation | |
shell: bash | |
run: | | |
sudo apt-get install -y doxygen graphviz | |
ctest -S .docs.cmake -V | |
- name: Publish Documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: doc/html | |
CLEAN: true |