Skip to content

Merge pull request #141 from geopython/minor-web-index-updates #20

Merge pull request #141 from geopython/minor-web-index-updates

Merge pull request #141 from geopython/minor-web-index-updates #20

Workflow file for this run

name: website ⚙️
on:
push:
paths:
- 'web/**'
defaults:
run:
working-directory: web
jobs:
build:
name: Build and Deploy Website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install requirements 📦
run: |
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'