Skip to content

Update outdated networks info for testnets (#292) #489

Update outdated networks info for testnets (#292)

Update outdated networks info for testnets (#292) #489

Workflow file for this run

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 }}