Skip to content

Commit 6385194

Browse files
committed
further naming exmaples
1 parent f1d45e9 commit 6385194

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/RenderAllDiagrams.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,15 @@ jobs:
5050
for dir in $FileNamePaths
5151
do
5252
# Render SVGs from PUMLs
53-
find $dir -name "*.puml" -exec java -jar plantuml.jar -tsvg {} \;
53+
find $dir -name "*.puml" -exec java -jar plantuml.jar -tsvg -filename $dir {} \;
5454
done
5555
5656
# Generate the SVGs from DrawIO
5757
- name: Render DrawIO to SVG with predefined action
5858
uses: rlespinasse/drawio-export-action@v2
5959
with:
6060
path: ./Material/imgsrc/drawio/
61+
remove-page-suffix: true
6162
output: .
6263
format: svg
6364
action-mode: all

Material/imgsrc/plantuml/amts_data_objects.puml renamed to Material/imgsrc/plantuml/Components_Example.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```plantuml
2-
@startuml component_example
2+
@startuml
33
actor client
44
node app
55
database db
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
```plantuml
2+
@startuml nameInSource_Example
3+
actor client
4+
node app
5+
database db
6+
7+
db -> app
8+
app -> client
9+
@enduml
10+
```

0 commit comments

Comments
 (0)