mirror of https://github.com/actions/toolkit
Add check to make sure archive has been created already
Co-authored-by: Josh Gross <joshmgross@github.com>pull/1857/head
parent
555b03f6fd
commit
68ab87caa2
|
@ -296,7 +296,9 @@ async function restoreCachev2(
|
||||||
throw new Error(`Failed to restore: ${error.message}`)
|
throw new Error(`Failed to restore: ${error.message}`)
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
await utils.unlinkFile(archivePath)
|
if (archivePath) {
|
||||||
|
await utils.unlinkFile(archivePath)
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.debug(`Failed to delete archive: ${error}`)
|
core.debug(`Failed to delete archive: ${error}`)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue