chore(deps): update dev dependencies #133
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: docs deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.10.4 | |
- run: | | |
python -m pip install poetry | |
python -m pip install poetry-plugin-export | |
poetry export -f requirements.txt --output requirements.txt --with dev --without-hashes | |
python -m pip install -r requirements.txt # for some reason it is not installed by poetry | |
mkdocs gh-deploy --force | |
rm requirements.txt |