2022-01-21 08:52:18 +01:00
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-01-21 08:59:07 +01:00
|
|
|
- master
|
2022-01-21 08:52:18 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-02 00:03:06 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2022-01-21 08:52:18 +01:00
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
|
|
|
|
- name: Build and deploy
|
|
|
|
run: |
|
2023-01-02 00:03:06 +01:00
|
|
|
cp README.md docs/list.md
|
2022-01-21 08:52:18 +01:00
|
|
|
pip install -r requirements.txt
|
|
|
|
mkdocs build
|
|
|
|
mkdocs gh-deploy --force
|