diff --git a/src/index.ts b/src/index.ts index ff83016..5794aed 100644 --- a/src/index.ts +++ b/src/index.ts @@ -88,6 +88,9 @@ async function run(): Promise { const tarballPath = `./${repoName}-${branch}.tar.gz` const extractPath = `./${repoName}-${branch}` + core.info(`Creating directory ${extractPath}...`) + await fs.mkdir(extractPath, { recursive: true }) + core.info(`Downloading ${archiveUrl}...`) await downloadFile(archiveUrl, tarballPath, token)