Add helper classes and CLI tool to work with catalog image #74
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: "Documentation" | |
on: | |
push: | |
paths: | |
- docs/** | |
- mkdocs.yml | |
workflow_dispatch: | |
jobs: | |
documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate docs | |
run: | | |
pipx install mkdocs | |
pipx inject mkdocs \ | |
mkdocs-material \ | |
pymdown-extensions \ | |
mkdocs-mermaid2-plugin | |
mkdocs build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./site |