[pre-commit.ci] pre-commit autoupdate #265
Workflow file for this run
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: Publish Docs | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Micromamba env | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: TEST | |
create-args: >- | |
python=3 | |
--file requirements.txt | |
--file requirements-dev.txt | |
- name: Install folium from source | |
shell: bash -l {0} | |
run: python -m pip install -e . --no-deps --force-reinstall | |
- name: Build documentation | |
shell: bash -l {0} | |
run: | | |
set -e | |
cp examples/Quickstart.ipynb docs/quickstart.ipynb | |
pushd docs | |
make clean html linkcheck | |
popd | |
- name: GitHub Pages action | |
if: ${{ github.event_name == 'release' }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_build/html/ |