Skip to content

Update index.md

Update index.md #33

Workflow file for this run

name: mkdocs-deploy
on:
pull_request:
types:
- closed
jobs:
build:
if: github.event.label.name == 'documentation' && github.event.pull_request.merged == 'true'
runs-on: ubuntu-18.04
steps:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
architecture: 'x64'
- name: Install dependencies
run: pip install -r docs-requirements.txt
- name: MKDocs build
run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: docs