Skip to content

Merge pull request #689 from soot-oss/fix/gettingStartedDocu #130

Merge pull request #689 from soot-oss/fix/gettingStartedDocu

Merge pull request #689 from soot-oss/fix/gettingStartedDocu #130

Workflow file for this run

name: Documentation
on:
push:
branches:
- develop
# only trigger workflow if one of these paths are affected as well
paths:
- 'mkdocs.yml'
- 'sootup.examples/**'
- 'docs/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mkdocs-tooltips
- run: pip install git+https://github.com/RedisLabs/mkdocs-include.git
- run: pip install git+https://github.com/swissiety/LspLexer4Pygments.git
# grab latest release url of the JimpleLSP jar and download it
- run: curl -s -L -o ./jimplelsp.jar $(curl -s https://api.github.com/repos/swissiety/jimpleLsp/releases/latest | grep 'browser_download_url".*jar"' | cut -d ':' -f 2,3 | tr -d \")
- run: mkdocs gh-deploy --force