Merge pull request #337 from SignalOceanSdk/develop #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
pip install nbconvert==6.5.0 | |
pip install mkdocs | |
pip install mkdocs-material | |
pip install mkdocstrings-python | |
pip install mkdocs-jupyter | |
pip install requests | |
pip install signal-ocean | |
- name: Deploy docs | |
run: mkdocs gh-deploy --force |