Skip to content

Commit 3d4486f

Browse files
authored
Refactor diagram build steps in workflow
1 parent f385078 commit 3d4486f

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/static.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ jobs:
3131
steps:
3232
- name: Checkout
3333
uses: actions/checkout@v4
34-
- name: Build diagrams
35-
run: sudo apt install graphviz && dot -Tpng ./paper/architecture.dot -o architecture.png && \
36-
dot -Tpng ./paper/ses.dot -o ses.png
34+
- name: Download missing dependencies
35+
run: sudo apt install graphviz
36+
- name: Building diagrams
37+
run: dot -Tpng ./paper/architecture.dot -o architecture.png && dot -Tpng ./paper/ses.dot -o ses.png
3738
- name: Setup Pages
3839
uses: actions/configure-pages@v5
3940
- name: Upload artifact

0 commit comments

Comments
 (0)