feat: add due event fetcher and attribute enrichment (#167) #80
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 UML diagrams | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
generate_plantuml: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ts-graphviz/setup-graphviz@v1 | |
- run: curl -LJ https://github.com/plantuml/plantuml/releases/download/v1.2022.7/plantuml-1.2022.7.jar -o plantuml.jar | |
- run: java -jar plantuml.jar -v -tpng -r design/plantuml/**.puml -o ../../static/images | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'docs: generate UML diagrams' | |
file_pattern: 'static/images/*.png' |