Handle closed polygons well in substrate #152
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 documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-doc: | |
name: Build upstream version documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip3 install mkdocs-material mike | |
- name: Setup doc deploy | |
run: | | |
git config --global user.name Documentation Bot | |
git config --global user.email [email protected] | |
- name: Build docs | |
run: mike deploy --push --update-aliases upstream |