Add setjmp
for error handling in Parser; misc API changes
#97
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: Generate docs.json file | |
on: [push] | |
jobs: | |
generate_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 3-stage bootstrap | |
run: | | |
cd ${{ github.workspace }} | |
./meta/bootstrap.sh | |
- name: Generate Documentation | |
run: | | |
cd ${{ github.workspace }} | |
mkdir -p build-docs | |
./meta/gen_docs.sh build-docs/docs.json | |
- name: Copy | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: docs | |
folder: build-docs |