ci: upgrade dependencies #98
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: mkdocs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- uses: snok/install-poetry@v1 | |
- name: install | |
working-directory: backend/src | |
run: poetry install | |
- name: Build documentation | |
working-directory: backend/src | |
run: | | |
poetry run mkdocs build -f ../../mkdocs.yml | |
- name: Copy site | |
run: | | |
mkdir -p gh-pages | |
touch gh-pages/.nojekyll | |
cp -r _site/* gh-pages | |
- name: Deploy documentation | |
if: ${{ github.event_name == 'push' }} | |
uses: JamesIves/github-pages-deploy-action@4.1.4 | |
with: | |
branch: gh-pages | |
folder: gh-pages |