Merge pull request #3 from jolo-dev/docs

Setup python
This commit is contained in:
JoLo 2020-11-22 19:41:06 +01:00 committed by GitHub
commit e2c8058de6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -9,11 +9,14 @@ jobs:
name: Deploy docs name: Deploy docs
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout master - uses: actions/checkout@v2
uses: actions/checkout@v2 - name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Mkdocs - name: Install Mkdocs
run: | run: |
python -m pip install --upgrade pip python3 -m pip install --upgrade pip
pip install mkdocs pip install mkdocs
- name: Deploy docs - name: Deploy docs
run: python -m mkdocs gh-deploy run: mkdocs gh-deploy