File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -68,22 +68,29 @@ jobs:
68
68
- name : Execute run script
69
69
run : earthly --secret OWASP_NVD_API_KEY +run-with-gradle
70
70
71
- # Save artifacts for build
72
- # See Earthfile that copies these from container to local
71
+ # Save artifacts for build
72
+ # See Earthfile that copies these from container to local
73
+
74
+ - name : Save Jar for main
75
+ uses : actions/upload-artifact@v4
76
+ with :
77
+ name : jar-main
78
+ if-no-files-found : error
79
+ path : build/libs/modern-java-practices-0-SNAPSHOT.jar
73
80
74
81
# Javadoc HTML and jars
75
82
76
83
- name : Save Javadoc HTML for main
77
84
uses : actions/upload-artifact@v4
78
85
with :
79
- name : javadoc-html
86
+ name : javadoc-html-main
80
87
if-no-files-found : error
81
88
path : build/docs/javadoc/
82
89
83
90
- name : Save Javadoc HTML Jar for main
84
91
uses : actions/upload-artifact@v4
85
92
with :
86
- name : javadoc-jar
93
+ name : javadoc-jar-main
87
94
if-no-files-found : error
88
95
path : build/libs/modern-java-practices-0-SNAPSHOT-javadoc.jar
89
96
Original file line number Diff line number Diff line change 73
73
# Save artifacts for build
74
74
# See Earthfile that copies these from container to local
75
75
76
+ - name : Save Jar for main
77
+ uses : actions/upload-artifact@v4
78
+ with :
79
+ name : jar-main
80
+ if-no-files-found : error
81
+ path : target/modern-java-practices-0-SNAPSHOT.jar
82
+
76
83
# Javadoc HTML and jars
77
84
78
85
- name : Save Javadoc HTML for main
You can’t perform that action at this time.
0 commit comments