First development of the deploy action #6

Merged
Philipp merged 14 commits from develop-action into main 2023-11-26 18:31:53 +01:00
1039 changed files with 228397 additions and 0 deletions
Showing only changes of commit 19eaad21ff - Show all commits

View File

@ -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();