Skip to content

chore: remove text from README.md #39

chore: remove text from README.md

chore: remove text from README.md #39

Workflow file for this run

name: docs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Build (docs)
run: |
pip install mkdocs-material
mkdocs build --clean -f docs/mkdocs.yml -d build/mkdocs
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
publish_dir: docs/build/mkdocs