build(deps-dev): update mkdocs-material requirement from ~8 to ~9 (#61) #46
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 | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ASDF Parse | |
uses: kota65535/[email protected] | |
id: versions | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ steps.versions.outputs.python }}" | |
architecture: x64 | |
- uses: abatilo/[email protected] | |
with: | |
poetry-version: "${{ steps.versions.outputs.poetry }}" | |
- run: poetry install --extras all | |
- run: poetry run mkdocs build | |
- uses: peaceiris/[email protected] | |
with: | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
publish_dir: ./site |