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 {
108887
108887
* @param {String} artifactName Name by which the artifact should be available post uploading
108888
108888
* @param {String[]} files Files to upload
108889
108889
* @param {String} rootFolder Folder in which the files reside
108890
- * @returns {Promise<import('@actions/artifact').UploadArtifactResponse>} =>
108890
+ * @returns {Promise<import('@actions/artifact').UploadArtifactResponse>}
108891
108891
* Response of the upload operation
108892
108892
*/
108893
108893
static async uploadArtifacts(artifactName, files, rootFolder) {
108894
108894
const artifactClient = new DefaultArtifactClient();
108895
108895
const response = await artifactClient.uploadArtifact(
108896
108896
artifactName,
108897
108897
files,
108898
- rootFolder,
108899
- { continueOnError: true },
108898
+ rootFolder, {
108899
+ continueOnError: true,
108900
+ },
108900
108901
);
108901
108902
core.info(`Response for upload: ${JSON.stringify(response)}`);
108902
108903
return response;
Original file line number Diff line number Diff line change @@ -7,16 +7,17 @@ class ArtifactsManager {
7
7
* @param {String } artifactName Name by which the artifact should be available post uploading
8
8
* @param {String[] } files Files to upload
9
9
* @param {String } rootFolder Folder in which the files reside
10
- * @returns {Promise<import('@actions/artifact').UploadArtifactResponse> } =>
10
+ * @returns {Promise<import('@actions/artifact').UploadArtifactResponse> }
11
11
* Response of the upload operation
12
12
*/
13
13
static async uploadArtifacts ( artifactName , files , rootFolder ) {
14
14
const artifactClient = new DefaultArtifactClient ( ) ;
15
15
const response = await artifactClient . uploadArtifact (
16
16
artifactName ,
17
17
files ,
18
- rootFolder ,
19
- { continueOnError : true } ,
18
+ rootFolder , {
19
+ continueOnError : true ,
20
+ } ,
20
21
) ;
21
22
core . info ( `Response for upload: ${ JSON . stringify ( response ) } ` ) ;
22
23
return response ;
You can’t perform that action at this time.
0 commit comments