Bump mkdocs-git-revision-date-localized-plugin from 1.2.4 to 1.2.5 in… #376
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
# Publish documentation | |
name: Publish documentation | |
on: | |
push: | |
branches: | |
- main | |
- docs/** | |
- feature/** | |
- fix/** | |
paths: | |
- docs/** | |
workflow_dispatch: | |
jobs: | |
docs-deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev pngquant | |
pip install -r docs/requirements.txt | |
- name: Build and deploy | |
working-directory: docs | |
run: mkdocs gh-deploy --force |