mirror of https://github.com/actions/toolkit
removing info logs
parent
2124ef2413
commit
7549d1b218
|
@ -91,12 +91,10 @@ export async function streamExtractExternal(
|
||||||
})
|
})
|
||||||
.pipe(unzip.Extract({path: directory}))
|
.pipe(unzip.Extract({path: directory}))
|
||||||
.on('close', () => {
|
.on('close', () => {
|
||||||
core.info(`zip stream: Artifact downloaded to: ${directory}`)
|
|
||||||
clearTimeout(timer)
|
clearTimeout(timer)
|
||||||
resolve()
|
resolve()
|
||||||
})
|
})
|
||||||
.on('error', (error: Error) => {
|
.on('error', (error: Error) => {
|
||||||
core.warning(`zip stream: Artifact download failed: ${error.message}`)
|
|
||||||
reject(error)
|
reject(error)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue