From 75649df729c5abb19f027e3e782116a39ef950c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=E1=BA=BF=20H=C6=B0ng?= Date: Wed, 18 Dec 2024 18:29:53 +0700 Subject: [PATCH] chore(ci): use poetry to install docs --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dd42a4c..c5c50bd 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,8 +22,8 @@ jobs: - name: Install dependencies id: install run: | - python -m pip install --upgrade pip - pip install mkdocs mkdocstrings mkdocs-material + pipx install poetry --python $(which python) + poetry install --only docs - name: Build docs id: build run: |