-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (31 loc) · 783 Bytes
/
docs.yaml
File metadata and controls
42 lines (31 loc) · 783 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
42
name: docs
on:
push:
branches:
- master
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v4
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: "2.1.3"
- name: 🚀 Install Dependencies
run: |
python -m pip install --upgrade pip
poetry config virtualenvs.create false
poetry install --only docs
- name: ✅ Deploy Docs on gh-pages
run: |
make docs-deploy