Skip to content

Commit 027d879

Browse files
authored
Fixes to plantuml action
1 parent 1f2a4b7 commit 027d879

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/plantuml.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ jobs:
1414
steps:
1515
- name: Checkout Source
1616
uses: actions/checkout@v1
17-
- name: Generate SVG Diagrams
18-
uses: cloudbees/plantuml-github-action@master
19-
with:
20-
args: -v -tsvg $UML_FILES
2117
- name: Get changed UML files
2218
id: getfile
2319
run: |
2420
echo "::set-output name=files::$(git diff-tree -r --no-commit-id --name-only ${{ github.sha }} | grep ${{ env.UML_FILES }} | xargs)"
2521
- name: UML files considered echo output
2622
run: |
2723
echo ${{ steps.getfile.outputs.files }}
24+
- name: Generate SVG Diagrams
25+
uses: cloudbees/plantuml-github-action@master
26+
with:
27+
args: -v -tsvg ${{ steps.getfile.outputs.files }}
2828
- name: Generate PNG Diagrams
2929
uses: cloudbees/plantuml-github-action@master
3030
with:
31-
args: -v -tpng $UML_FILES
31+
args: -v -tpng ${{ steps.getfile.outputs.files }}
3232
- name: Push Local Changes
3333
uses: stefanzweifel/[email protected]
3434
with:

0 commit comments

Comments
 (0)