mirror of
https://github.com/mrleduck/Vossendijk-Regels.git
synced 2025-08-31 15:31:43 +00:00
18 lines
412 B
YAML
18 lines
412 B
YAML
name: Publish docs via GitHub Pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build:
|
|
name: Deploy docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
- run: pip install mkdocs-material
|
|
- run: pip install mkdocs-git-revision-date-localized-plugin
|
|
- run: mkdocs gh-deploy --force
|