Merge pull request #201 from drym-org/improve-binding-specs #6
This file contains hidden or 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: | |
| - main | |
| paths: | |
| - 'qi-doc/scribblings/**' | |
| - '.github/workflows/docs.yml' | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| deploy-docs: | |
| runs-on: ubuntu-latest | |
| name: Build and deploy backup docs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Install Racket | |
| uses: Bogdanp/setup-racket@v1.9.1 | |
| with: | |
| architecture: 'x64' | |
| distribution: 'full' | |
| variant: 'CS' | |
| version: 'stable' | |
| - name: Install Package and its Dependencies | |
| run: make install | |
| - name: Build docs for hosting | |
| run: make build-standalone-docs | |
| - name: Push to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@v4.4.1 | |
| with: | |
| folder: docs/qi | |
| target-folder: docs | |
| branch: gh-pages | |
| clean: true |