Skip to content

Commit

Permalink
try virtual environment
Browse files Browse the repository at this point in the history
  • Loading branch information
peverwhee committed Oct 2, 2024
1 parent 2c1572b commit fb040e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ jobs:
- name: Setup Python
run: |
sudo apt install -y python3 && pip install mkdocs-material
sudo apt update
sudo apt install -y python3 python3-venv python3-pip
python3 -m venv myenv
source myenv/bin/activate
pip install mkdocs-material
echo "cache_id=$(date --utc '+%F')" >> $GITHUB_ENV
- name: Configure cache
Expand Down

0 comments on commit fb040e4

Please sign in to comment.