1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Moved installation of plugin into another step

This commit is contained in:
squidfunk 2020-02-14 09:31:59 +01:00
parent 63380891be
commit 2980e4b392

View File

@ -93,9 +93,7 @@ jobs:
${{ runner.os }}-pip-
- if: steps.cache-python.outputs.cache-hit != 'true'
run: |
pip install -r requirements.txt
pip install mkdocs-minify-plugin>=0.2
run: pip install -r requirements.txt
# Set configuration for repository and deploy documentation
- env:
@ -108,8 +106,10 @@ jobs:
git config --global user.email "${GH_EMAIL}"
git remote set-url origin ${REMOTE}
# Install theme
- run: python setup.py install
# Install theme and dependencies
- run: |
python setup.py install
pip install mkdocs-minify-plugin>=0.2
# Build documentation
- env: