diff --git a/dist/index.js b/dist/index.js index 42064d3..28a56dc 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8393,7 +8393,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) { + if (response.status != 200) { throw new Error(`Unexpected response from GitHub API. Status: '${response.status}'`); } console.log('GETTING THE LOCATION'); diff --git a/src/github-api-helper.ts b/src/github-api-helper.ts index e05e1e1..8720656 100644 --- a/src/github-api-helper.ts +++ b/src/github-api-helper.ts @@ -53,7 +53,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) { + if (response.status != 200) { throw new Error( `Unexpected response from GitHub API. Status: '${response.status}'` )