diff --git a/dist/index.js b/dist/index.js index a516b63..b8eb933 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8125,6 +8125,9 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) { yield exec.exec(`tar -xzf "${archiveFile}"`, [], { cwd: repositoryPath }); + yield exec.exec(`find .`, [], { + cwd: repositoryPath + }); }); } exports.downloadRepository = downloadRepository; diff --git a/src/github-api-helper.ts b/src/github-api-helper.ts index efabd38..01e3bdd 100644 --- a/src/github-api-helper.ts +++ b/src/github-api-helper.ts @@ -49,4 +49,7 @@ export async function downloadRepository( await exec.exec(`tar -xzf "${archiveFile}"`, [], { cwd: repositoryPath } as ExecOptions) + await exec.exec(`find .`, [], { + cwd: repositoryPath + } as ExecOptions) }