Skip to content

Commit

Permalink
fix: comment out cached virtual environment loading in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dakshpokar committed Dec 6, 2024
1 parent 21fb9bc commit a586822
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
virtualenvs-in-project: true
installer-parallel: true

- name: Load cached venv
uses: actions/cache@v2
id: cached-poetry-dependencies
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
# - name: Load cached venv
# uses: actions/cache@v2
# id: cached-poetry-dependencies
# with:
# path: .venv
# key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
Expand All @@ -52,8 +52,6 @@ jobs:

- name: Run quartodoc
run: |
which python
poetry run pip list
cd docs
poetry run quartodoc build --verbose
poetry run quartodoc interlinks
Expand Down

0 comments on commit a586822

Please sign in to comment.