Skip to content

Commit

Permalink
further naming exmaples
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMTheilig committed Jan 10, 2024
1 parent f1d45e9 commit 6385194
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/RenderAllDiagrams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,15 @@ jobs:
for dir in $FileNamePaths
do
# Render SVGs from PUMLs
find $dir -name "*.puml" -exec java -jar plantuml.jar -tsvg {} \;
find $dir -name "*.puml" -exec java -jar plantuml.jar -tsvg -filename $dir {} \;
done
# Generate the SVGs from DrawIO
- name: Render DrawIO to SVG with predefined action
uses: rlespinasse/drawio-export-action@v2
with:
path: ./Material/imgsrc/drawio/
remove-page-suffix: true
output: .
format: svg
action-mode: all
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```plantuml
@startuml component_example
@startuml
actor client
node app
database db
Expand Down
10 changes: 10 additions & 0 deletions Material/imgsrc/plantuml/noName_Example.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
```plantuml
@startuml nameInSource_Example
actor client
node app
database db

db -> app
app -> client
@enduml
```

0 comments on commit 6385194

Please sign in to comment.