Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

refactor: rename use cases from story to news_items #113

refactor: rename use cases from story to news_items

refactor: rename use cases from story to news_items #113

Workflow file for this run

name: generate docs
on:
push:
branches:
- master
workflow_dispatch:
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"
- name: Install Poetry
run: pip install poetry
- 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
clean-exclude: |
coverage/*