0
1
mirror of https://github.com/actions/checkout synced 2024-06-02 18:48:04 +02:00
This commit is contained in:
eric sciple 2019-12-10 01:53:12 -05:00
parent 4a1fa615de
commit eed20d30d5
2 changed files with 2 additions and 0 deletions

1
dist/index.js vendored
View File

@ -8392,6 +8392,7 @@ function downloadRepository(accessToken, owner, repo, ref, commit, repositoryPat
};
const response = yield octokit.repos.getArchiveLink(params);
console.log('GOT THE RESPONSE');
console.log(response.status);
if (response.status != 302) {
throw new Error(`Unexpected response from GitHub API. Status: '${response.status}'`);
}

View File

@ -52,6 +52,7 @@ export async function downloadRepository(
}
const response = await octokit.repos.getArchiveLink(params)
console.log('GOT THE RESPONSE')
console.log(response.status)
if (response.status != 302) {
throw new Error(
`Unexpected response from GitHub API. Status: '${response.status}'`