Create main.yml

This commit is contained in:
mrleduck 2021-04-25 15:44:32 +02:00 committed by GitHub
parent 9eae48dbe4
commit 9bd4c8e274
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,17 @@
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