installing mkdocs as part of the github workflow

This commit is contained in:
João Moura
2024-01-10 00:45:25 -03:00
parent bc7366b862
commit a944cfc8d0

View File

@@ -21,5 +21,14 @@ jobs:
with: with:
python-version: '3.10' python-version: '3.10'
- name: Install Requirements
run: |
sudo apt-get update &&
sudo apt-get install pngquant &&
pip install mkdocs-material
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Build and deploy MkDocs - name: Build and deploy MkDocs
run: mkdocs gh-deploy --force run: mkdocs gh-deploy --force