File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -108887,16 +108887,17 @@ class ArtifactsManager {
108887108887 * @param {String} artifactName Name by which the artifact should be available post uploading
108888108888 * @param {String[]} files Files to upload
108889108889 * @param {String} rootFolder Folder in which the files reside
108890- * @returns {Promise<import('@actions/artifact').UploadArtifactResponse>} =>
108890+ * @returns {Promise<import('@actions/artifact').UploadArtifactResponse>}
108891108891 * Response of the upload operation
108892108892 */
108893108893 static async uploadArtifacts(artifactName, files, rootFolder) {
108894108894 const artifactClient = new DefaultArtifactClient();
108895108895 const response = await artifactClient.uploadArtifact(
108896108896 artifactName,
108897108897 files,
108898- rootFolder,
108899- { continueOnError: true },
108898+ rootFolder, {
108899+ continueOnError: true,
108900+ },
108900108901 );
108901108902 core.info(`Response for upload: ${JSON.stringify(response)}`);
108902108903 return response;
Original file line number Diff line number Diff line change @@ -7,16 +7,17 @@ class ArtifactsManager {
77 * @param {String } artifactName Name by which the artifact should be available post uploading
88 * @param {String[] } files Files to upload
99 * @param {String } rootFolder Folder in which the files reside
10- * @returns {Promise<import('@actions/artifact').UploadArtifactResponse> } =>
10+ * @returns {Promise<import('@actions/artifact').UploadArtifactResponse> }
1111 * Response of the upload operation
1212 */
1313 static async uploadArtifacts ( artifactName , files , rootFolder ) {
1414 const artifactClient = new DefaultArtifactClient ( ) ;
1515 const response = await artifactClient . uploadArtifact (
1616 artifactName ,
1717 files ,
18- rootFolder ,
19- { continueOnError : true } ,
18+ rootFolder , {
19+ continueOnError : true ,
20+ } ,
2021 ) ;
2122 core . info ( `Response for upload: ${ JSON . stringify ( response ) } ` ) ;
2223 return response ;
You can’t perform that action at this time.
0 commit comments