chore: regenerated images #6
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: generate_documentation | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
make: | |
name: Generating HTML documentation | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install json-schema-for-humans | |
run: pip install json-schema-for-humans | |
- name: Create direcotry for HTML documentation | |
run: mkdir html_documentation | |
- name: Generate HTML documentation | |
run: generate-schema-doc yaml_schemas html_documentation | |
- name: Upload HTML documentation as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html_documentation | |
path: html_documentation |