23 lines
408 B
YAML
23 lines
408 B
YAML
|
name: Deploy
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: 3.7
|
||
|
|
||
|
- name: Build and deploy
|
||
|
run: |
|
||
|
cp README.md docs/index.md
|
||
|
pip install -r requirements.txt
|
||
|
mkdocs build
|
||
|
mkdocs gh-deploy --force
|