From 7d3e8ad9bf6d69f01d611a7cca6da594ad7cc62a Mon Sep 17 00:00:00 2001 From: SevgiAkten Date: Tue, 13 Aug 2024 15:41:05 +0300 Subject: [PATCH] add requirements in doc --- .github/workflows/documentation.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7150239..74d7b36 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -18,6 +18,10 @@ jobs: with: python-version: '3.x' + - name: Install dependencies + run: | + pip install -r requirements.txt + - name: Generate HTML Documentation run: | cd src @@ -29,4 +33,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs + publish_dir: ./src/docs