(build) skip giza.mod if no Fortran compiler found; also warn about this #78
Workflow file for this run
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: Update API docs | |
on: push | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: update api docs | |
run: | | |
cd scripts | |
./generate-docs.sh | |
- name: Commit API documentation | |
uses: EndBug/add-and-commit@v8 | |
with: | |
default_author: github_actions | |
message: '[web-bot] updated auto-generated documentation' | |
add: 'docs/documentation/*.html --force' |