Added auth for private servers #7

Merged
Philipp merged 30 commits from added-local-auth into main 2023-11-26 22:24:20 +01:00
Showing only changes of commit a312781dc7 - Show all commits

View File

@ -90,6 +90,7 @@ async function postCode() {
const files_to_push = await readFilesIntoDict(pattern, prefix);
core.info(`Trying to upload the following files to ${branch}:`);
Object.keys(files_to_push).forEach((key) => {
core.info(`Key: ${key}`);
});
@ -104,7 +105,8 @@ async function postCode() {
path: path,
};
core.info(`Trying to upload the following files to ${branch}:`);
core.info("login_arguments:");
core.info(JSON.stringify(login_arguments, null, 2));
Object.keys(login_arguments).forEach((key) => {
core.info(`Key: ${key}`);
});