Print full response in debug logs

This commit is contained in:
Sascha Mann
2019-09-25 21:50:26 +02:00
parent 8007d2c472
commit 3861b0a708
2 changed files with 2 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ async function getJuliaReleases(): Promise<string[]> {
})
res.on('end', () => {
core.debug(data)
resolve(JSON.parse(data).map((r) => r.tag_name as string))
})
}).on('error', err => {