Skip to content

Commit ecaa405

Browse files
fix github action
1 parent f8af96c commit ecaa405

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/docs.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ jobs:
3636
python-version: '3.11'
3737

3838
- name: Install Poetry
39-
uses: snok/install-poetry@v1
40-
with:
41-
version: latest
42-
virtualenvs-create: true
43-
virtualenvs-in-project: true
39+
run: |
40+
curl -sSL https://install.python-poetry.org | python - -y
41+
echo "$HOME/.local/bin" >> $GITHUB_PATH
42+
43+
- name: Configure Poetry
44+
run: |
45+
poetry config virtualenvs.create true
46+
poetry config virtualenvs.in-project true
4447
4548
- name: Load cached venv
4649
id: cached-poetry-dependencies

0 commit comments

Comments
 (0)