From 7c7b7fcb5dbe0a6e545280c39f585f4633117994 Mon Sep 17 00:00:00 2001 From: Rami <54779216+Ramimashkouk@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:08:22 +0300 Subject: [PATCH] fix: Bring doc workflow to work (#85) * ci: Install poetry before building docs * chore: Delete the push branch --- .github/workflows/build_and_publish_docs.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_publish_docs.yml b/.github/workflows/build_and_publish_docs.yml index f27e03ab..0598eca8 100644 --- a/.github/workflows/build_and_publish_docs.yml +++ b/.github/workflows/build_and_publish_docs.yml @@ -1,5 +1,4 @@ name: build_and_publish_docs - on: workflow_dispatch: @@ -22,6 +21,14 @@ jobs: with: python-version: 3.9 + - name: setup poetry + run: | + python -m pip install --upgrade pip poetry + + - name: install dependencies + run: poetry install + working-directory: backend + - name: build documentation run: make build_docs