diff --git a/index.js b/index.js index 142b0ff..ca83565 100644 --- a/index.js +++ b/index.js @@ -115,7 +115,9 @@ async function postCode() { core.info(JSON.stringify(login_arguments, null, 2)); const api = new ScreepsAPI(login_arguments); - await api.code.set(branch, files_to_push); + const response = await api.code.set(branch, files_to_push); + core.info(response.status); + core.info(JSON.stringify(response.json(), null, 2)); } postCode();