Bump mkdocs-git-revision-date-localized-plugin from 1.2.4 to 1.2.9 #273
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: Build Documentation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
cache: pipenv | |
- name: Install pipenv | |
run: | | |
python -m pip install pipenv | |
- name: Install dependencies | |
run: pipenv sync | |
- run: pipenv run mkdocs build |