File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 64
64
- name : Execute run script
65
65
run : earthly --secret OWASP_NVD_API_KEY +run-with-gradle
66
66
67
+ # Save artifacts for build
68
+ # See Earthfile that copies these from container to local
69
+
70
+ # Javadoc HTML and jars
71
+
72
+ - name : Save Javadoc HTML for main
73
+ uses : actions/upload-artifact@v4
74
+ with :
75
+ name : javadoc-html-main
76
+ if-no-files-found : error
77
+ path : build/docs/javadoc/
78
+
79
+ - name : Save Javadoc HTML Jar for main
80
+ uses : actions/upload-artifact@v4
81
+ with :
82
+ name : javadoc-jar-main
83
+ if-no-files-found : error
84
+ path : build/libs/modern-java-practices-0-SNAPSHOT-javadoc.jar
85
+
67
86
- name : Save coverage report
68
87
uses : actions/upload-artifact@v4
69
88
with :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ run-with-gradle:
33
33
34
34
# Javadocs and jars
35
35
SAVE ARTIFACT --keep-ts build/libs/modern-java-practices-0-javadoc.jar
36
- SAVE ARTIFACT --keep-ts build/docs/javadoc/test/ AS LOCAL build/docs/javadoc/test /
36
+ SAVE ARTIFACT --keep-ts build/docs/javadoc/ AS LOCAL build/docs/javadoc/
37
37
38
38
build-with-maven :
39
39
COPY mvnw .
You can’t perform that action at this time.
0 commit comments