We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 061e32e commit 9f3e54cCopy full SHA for 9f3e54c
1 file changed
analyze.js
@@ -55,8 +55,8 @@ async function prepareInputsZip(inputsGlob, targetFile) {
55
const output = fs.createWriteStream(targetFile);
56
const archive = archiver('zip');
57
archive.on('end', () => core.info("Finished writing ZIP"))
58
- archive.on('warning', (err) => core.warning("Warning when writing ZIP: ", err))
59
- archive.on('error', (err) => core.error("Error when writing ZIP: ", err))
+ archive.on('warning', (err) => core.warning("Warning when writing ZIP: " + err))
+ archive.on('error', (err) => core.error("Error when writing ZIP: " + err))
60
61
archive.pipe(output);
62
0 commit comments