Add Paris RPC queries (#61) #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: Publish on GitHub Pages | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: Build and publish documentation | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: https://github.com | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build documentation | |
uses: nikeee/[email protected] | |
with: | |
args: docs/docfx.json | |
- name: Publish documentation | |
uses: maxheld83/ghpages@master | |
env: | |
BUILD_DIR: docs/_site | |
GH_PAT: ${{ secrets.PAT }} |