From 3ea02e37d7419e73f92dc149ac8aa3f7a55b2093 Mon Sep 17 00:00:00 2001 From: Claromes Date: Fri, 14 Jun 2024 07:10:45 -0300 Subject: [PATCH] update docs deploy --- .github/workflows/documentation.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 2eaf111..d048da7 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -13,9 +13,12 @@ jobs: - uses: actions/setup-python@v5 with: python-version: 3.11 - - uses: abatilo/actions-poetry@v2.1.3 - - name: install - run: poetry install + - - name: Install Poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - + - name: Install dependencies + run: | + poetry install - name: Sphinx build run: | mkdir gh-pages -- 2.34.1