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

1
lib/setup-julia.js generated
View File

@@ -44,6 +44,7 @@ function getJuliaReleases() {
data += d;
});
res.on('end', () => {
core.debug(data);
resolve(JSON.parse(data).map((r) => r.tag_name));
});
}).on('error', err => {