We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bcd905 commit 6eaa89dCopy full SHA for 6eaa89d
.github/workflows/mkdocs-deploy.yml
@@ -1,9 +1,9 @@
1
-name: mkdocs-deploy
+name: mkdocs-deploy
2
on:
3
push:
4
branches:
5
- - main
6
-
+ - main
+
7
permissions:
8
contents: write
9
jobs:
@@ -21,7 +21,11 @@ jobs:
21
python-version: "3.11"
22
- name: Install Poetry
23
run: pip install poetry
24
+ - name: Clone python-sdk
25
+ run: git clone --depth 1 https://github.com/codellm-devkit/python-sdk.git ../python-sdk
26
- name: Install Dependencies
- run: poetry install --no-root
27
+ run: poetry install --no-root
28
+ - name: Install python-sdk into Poetry venv
29
+ run: poetry run pip install -e ../python-sdk
30
- name: Deploy docs
31
run: poetry run mkdocs gh-deploy --force --verbose
0 commit comments