Skip to content

Commit 278fca4

Browse files
committedMar 19, 2025·
Move log statements
1 parent 6890984 commit 278fca4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎dist/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -118857,10 +118857,10 @@ function run() {
118857118857
core.warning(`Artifact '${artifactName}' digest validation failed. Please verify the integrity of the artifact.`);
118858118858
}
118859118859
}
118860-
core.info(`Total of ${artifacts.length} artifact(s) downloaded`);
118861-
core.setOutput(constants_1.Outputs.DownloadPath, resolvedPath);
118862-
core.info('Download artifact has finished successfully');
118863118860
}
118861+
core.info(`Total of ${artifacts.length} artifact(s) downloaded`);
118862+
core.setOutput(constants_1.Outputs.DownloadPath, resolvedPath);
118863+
core.info('Download artifact has finished successfully');
118864118864
});
118865118865
}
118866118866
exports.run = run;

‎src/download-artifact.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ export async function run(): Promise<void> {
138138
)
139139
}
140140
}
141-
core.info(`Total of ${artifacts.length} artifact(s) downloaded`)
142-
core.setOutput(Outputs.DownloadPath, resolvedPath)
143-
core.info('Download artifact has finished successfully')
144141
}
142+
core.info(`Total of ${artifacts.length} artifact(s) downloaded`)
143+
core.setOutput(Outputs.DownloadPath, resolvedPath)
144+
core.info('Download artifact has finished successfully')
145145
}
146146

147147
run().catch(err =>

0 commit comments

Comments
 (0)
Please sign in to comment.