Skip to content

Commit

Permalink
modify workflow to install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaben committed Jun 3, 2024
1 parent d82cecf commit e333dd9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,11 @@ jobs:
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- name: Install pip requirements
run: |
cd moonbeam-mkdocs
# upgrade pip
pip3 install --upgrade pip setuptools==65.7.0
# install dependencies quietly
pip3 install -r requirements.txt &> /dev/null && echo "Dependencies installed" || echo "Error while installing dependencies"
- run: mkdocs gh-deploy --force

0 comments on commit e333dd9

Please sign in to comment.