3
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-04-24 04:15:33 +00:00
This commit is contained in:
eric sciple 2019-12-09 17:06:03 -05:00
parent 4af80cb867
commit d415b27760
2 changed files with 11 additions and 3 deletions

View file

@ -12,12 +12,17 @@ export async function downloadRepository(
): Promise<void> {
const octokit = new github.GitHub(accessToken)
const params: ReposGetArchiveLinkParams = {
archive_format: IS_WINDOWS ? 'zipball' : 'tarball',
archive_format: IS_WINDOWS ? 'zipball' : 'tarballl',
owner: owner,
repo: repo,
ref: ref
}
const response = await octokit.repos.getArchiveLink(params)
if (response.status != 200) {
throw new Error(
`GitHub API call failed with response status '${response.status}': ${response.data}`
)
}
console.log(`status=${response.status}`)
console.log(`headers=${JSON.stringify(response.headers)}`)
console.log(`data=${JSON.stringify(typeof response.data)}`)