-
-
Notifications
You must be signed in to change notification settings - Fork 55
41 lines (31 loc) · 843 Bytes
/
docs.yml
File metadata and controls
41 lines (31 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: docs
on:
push:
branches:
- main
- docs
jobs:
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org/ | python -
- name: Update Poetry
run: poetry self update --preview
- name: Configure Poetry
run: poetry config virtualenvs.in-project true
- name: Install dependencies
run: poetry install --with docs
- name: Pull
run: git pull
- name: Deploy the documentation
run: poetry run mkdocs gh-deploy