eric sciple 5 년 전
부모
커밋
4a1fa615de
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      dist/index.js
  2. 2 0
      src/github-api-helper.ts

+ 2 - 0
dist/index.js

@@ -8391,9 +8391,11 @@ function downloadRepository(accessToken, owner, repo, ref, commit, repositoryPat
                     ref: refHelper.getDownloadRef(ref, commit)
                 };
                 const response = yield octokit.repos.getArchiveLink(params);
+                console.log('GOT THE RESPONSE');
                 if (response.status != 302) {
                     throw new Error(`Unexpected response from GitHub API. Status: '${response.status}'`);
                 }
+                console.log('GETTING THE LOCATION');
                 const archiveUrl = response.headers['Location']; // Do not print the archive URL because it has an embedded token
                 assert.ok(archiveUrl, `Expected GitHub API response to contain 'Location' header`);
                 // Download the archive

+ 2 - 0
src/github-api-helper.ts

@@ -51,11 +51,13 @@ export async function downloadRepository(
         ref: refHelper.getDownloadRef(ref, commit)
       }
       const response = await octokit.repos.getArchiveLink(params)
+      console.log('GOT THE RESPONSE')
       if (response.status != 302) {
         throw new Error(
           `Unexpected response from GitHub API. Status: '${response.status}'`
         )
       }
+      console.log('GETTING THE LOCATION')
       const archiveUrl = response.headers['Location'] // Do not print the archive URL because it has an embedded token
       assert.ok(
         archiveUrl,