You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
363 B
22 lines
363 B
name: Publish docs via GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Deploy docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.3
|
|
|
|
- uses: actions/setup-python@v2.1.4
|
|
with:
|
|
python-version: 3.x
|
|
|
|
- run: pip install -r requrements.txt
|
|
|
|
- run: mkdocs gh-deploy --force
|