Reworked the logging a bit.
Lint / pre-commit Linting (push) Failing after 24s Details

This commit is contained in:
Philipp Horstenkamp 2023-11-26 17:48:38 +01:00
parent 19eaad21ff
commit 3e69a9b0fb
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ async function postCode() {
const api = new ScreepsAPI(login_arguments);
const response = await api.code.set(branch, files_to_push);
core.info(response.status);
core.info(JSON.stringify(response.json(), null, 2));
core.info(response);
core.info(JSON.stringify(response.json, null, 2));
}
postCode();