From f7cf80529c7b9a9d9103a5e08e862169da0870b4 Mon Sep 17 00:00:00 2001 From: marc0olo Date: Tue, 27 Jul 2021 16:15:34 +0200 Subject: [PATCH] fix: path to file with python dependencies --- .github/workflows/docs-develop.yml | 2 +- .github/workflows/docs-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-develop.yml b/.github/workflows/docs-develop.yml index 6662692..cdf1831 100644 --- a/.github/workflows/docs-develop.yml +++ b/.github/workflows/docs-develop.yml @@ -17,7 +17,7 @@ jobs: with: path: ~/.cache/pip3 key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }} - - run: pip3 install -r docs/requirements.txt + - run: pip3 install -r docs/python/requirements.txt - run: git config --global user.email "github-action@users.noreply.github.com" - run: git config --global user.name "GitHub Action" - run: mike deploy --push master \ No newline at end of file diff --git a/.github/workflows/docs-release.yml b/.github/workflows/docs-release.yml index 2ebf1fb..b2dbd1b 100644 --- a/.github/workflows/docs-release.yml +++ b/.github/workflows/docs-release.yml @@ -17,7 +17,7 @@ jobs: with: path: ~/.cache/pip3 key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }} - - run: pip3 install -r docs/requirements.txt + - run: pip3 install -r docs/python/requirements.txt - run: git config --global user.email "github-action@users.noreply.github.com" - run: git config --global user.name "GitHub Action" - run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV