We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4afe547 commit 9f5fde2Copy full SHA for 9f5fde2
src/downloader.ts
@@ -86,8 +86,9 @@ export async function download(
86
if (useGitHubCache) {
87
// Move file to GitHub cache directory
88
core.debug(`Moving ${destFilePath} to ${cacheDirectory}`)
89
+ const cachePath = `${cacheDirectory}/${destFilePath}`
90
await io.mkdirP(cacheDirectory)
- await io.mv(destFilePath, cacheDirectory)
91
+ await io.mv(destFilePath, cachePath)
92
// List files in cache directory
93
const filesInCacheDirectory = await (
94
await glob.create(`${cacheDirectory}/**`)
0 commit comments