Skip to content

chore(3.6.0): Adding the installation manifest for 3.6.0 (#4583) #645

chore(3.6.0): Adding the installation manifest for 3.6.0 (#4583)

chore(3.6.0): Adding the installation manifest for 3.6.0 (#4583) #645

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.x
- name: build docs
run: |
cd mkdocs
pip install mkdocs mkdocs_material
mkdocs build
- name: deploy docs
uses: peaceiris/actions-gh-pages@v2.5.0
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./mkdocs/site