Skip to content

Merge branch 'master' of https://github.com/geopython/pygeometa #3

Merge branch 'master' of https://github.com/geopython/pygeometa

Merge branch 'master' of https://github.com/geopython/pygeometa #3

Workflow file for this run

name: docs ⚙️
on:
push:
branches:
- master
paths:
- 'docs/**'
jobs:
build:
name: Build and Deploy Documentation
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 mkdocs
- name: Deploy 📦
run: cd docs && mkdocs gh-deploy --force -m 'update website'