Skip to content

research on DB polygon dissolving #59

research on DB polygon dissolving

research on DB polygon dissolving #59

Workflow file for this run

name: Deploy website ⚙️
on:
push:
branches:
- main
paths:
- '.github/workflows/**'
- 'docs/**'
defaults:
run:
working-directory: docs
jobs:
build:
name: Build and Deploy Website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# with:
# # Number of commits to fetch. 0 indicates all history for all branches and tags.
# # Default: 1
# fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install requirements 📦
run: |
sudo apt install -y python3-lxml git
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy 📦
run: mkdocs gh-deploy --strict --force --message 'update website via GitHub Actions'