Update quick start to remove old/redundant documentation (#68) #73
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: Build Pages | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
gh_pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Repository | |
uses: actions/checkout@v2 | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install mkdocs mkdocs-gitbook mkdocs-rtd-dropdown mkdocs-material | |
- run: mkdocs gh-deploy --force --clean --verbose |