Merge pull request #369 from ConductionNL/CBibop12-patch-1 #962
This file contains hidden or 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
| # Generates SVG files from UML files (for documentation purposes) | |
| name: generate plantuml | |
| on: push | |
| jobs: | |
| generate_plantuml: | |
| runs-on: ubuntu-latest | |
| name: plantuml | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v1 | |
| with: | |
| fetch-depth: 1 | |
| - name: plantuml | |
| id: plantuml | |
| uses: grassedge/generate-plantuml-action@v1.5 | |
| with: | |
| message: "Render PlantUML files" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |