Update did-jsonrpc.md #490
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 docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
# Setup from https://squidfunk.github.io/mkdocs-material/publishing-your-site/#with-github-actions | |
jobs: | |
deploy: | |
name: Deploy documentation | |
runs-on: ubuntu-latest | |
if: github.event.repository.fork == false | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install MkDocs Material Insiders | |
run: pip install git+https://${INSIDERS_GITHUB_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git@a77c30c2f82d56f34c52d5adeb5808b324ee3b67 | |
- name: Install plugins | |
run: pip install mkdocs-minify-plugin mkdocs-redirects | |
- name: Deploy docs | |
run: mkdocs gh-deploy --config-file mkdocs.insiders.yml --force | |
env: | |
INSIDERS_GITHUB_TOKEN: ${{ secrets.INSIDERS_GITHUB_TOKEN }} |