File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
splunk/src/main/java/com/splunk Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1919 server-id : splunk-artifactory
2020 - name : build
2121 run : mvn package --file pom.xml -DskipTests=true
22+ - name : Create temp artifacts apidocs folder
23+ run : mkdir apidocs
2224 - name : Create GitHub Release
2325 uses : softprops/action-gh-release@v1
2426 with :
3234 env :
3335 MAVEN_USERNAME : ${{ secrets.ARTIFACTORY_USERNAME }}
3436 MAVEN_PASSWORD : ${{ secrets.ARTIFACTORY_PASSWORD }}
37+
38+ - name : Zip docs
39+ run : zip -r apidocs/docs.zip splunk/target/apidocs
40+
41+ - name : Upload Artifact
42+ uses : actions/upload-artifact@v3
43+ with :
44+ name : apidocs
45+ path : apidocs/docs.zip
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ public int getPort() {
208208 /**
209209 * Sets Custom Headers of this service
210210 *
211- * @param headers
211+ * @param headers The custom headers.
212212 */
213213 public void setCustomHeaders (Map <String , String > headers ) {
214214 if (Objects .nonNull (headers )) {
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public String getStatus() {
9292 /**
9393 * Returns client certificate path.
9494 *
95- * @return
95+ * @return Path of client certificate.
9696 */
9797 public String getClientCert () {
9898 return getString ("clientCert" , "" );
You can’t perform that action at this time.
0 commit comments