We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2fcaa1 + 83fdff2 commit 7ff8cf4Copy full SHA for 7ff8cf4
2 files changed
.github/workflows/deploy-docs.yml
@@ -50,6 +50,12 @@ jobs:
50
run: |
51
uv sync --all-extras
52
53
+ - name: Cache PlantUML jar
54
+ uses: actions/cache@v4
55
+ with:
56
+ path: images/plantuml.jar
57
+ key: plantuml-jar-v1
58
+
59
- name: Validate topics
60
run: make validate
61
images/Makefile
@@ -9,7 +9,7 @@ OUTPUTS := $(ALL_INPUTS:.txt=.svg)
9
all: plantuml.jar $(OUTPUTS)
10
11
$(MINDMAP_INPUTS): $(MINDMAPS)
12
- python mindmap_yaml_to_plantuml.py $(MINDMAPS)
+ uv run python mindmap_yaml_to_plantuml.py $(MINDMAPS)
13
14
$(OUTPUTS): $(ALL_INPUTS)
15
java -jar plantuml.jar -c plantuml_options.txt -tsvg $(ALL_INPUTS)
0 commit comments